diff options
author | dillon <dillon@FreeBSD.org> | 1998-12-14 06:37:37 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 1998-12-14 06:37:37 +0000 |
commit | 1b46557c21ab146b0e43c06a8e1e922202afd373 (patch) | |
tree | 1ec35db1a5a1d4721c6893b6be4dff54402005ea /sys/pci/if_fpa.c | |
parent | 2d9e52659ce15a8f818a51abfda4613167fdc974 (diff) | |
download | FreeBSD-src-1b46557c21ab146b0e43c06a8e1e922202afd373.zip FreeBSD-src-1b46557c21ab146b0e43c06a8e1e922202afd373.tar.gz |
probe function changed from returning char * to const char *.
Diffstat (limited to 'sys/pci/if_fpa.c')
-rw-r--r-- | sys/pci/if_fpa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/if_fpa.c b/sys/pci/if_fpa.c index 8706f2a..cff0be2 100644 --- a/sys/pci/if_fpa.c +++ b/sys/pci/if_fpa.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_fpa.c,v 1.6 1998/02/09 06:10:49 eivind Exp $ + * $Id: if_fpa.c,v 1.7 1998/02/20 13:11:53 bde Exp $ * */ @@ -135,7 +135,7 @@ static void pdq_pci_shutdown(int, void *); * on both EISA and PCI boards, one must be careful in how defines the * PDQ in the config file. */ -static char * +static const char * pdq_pci_probe( pcici_t config_id, pcidi_t device_id) |