From 42a0ee466bf67769341184d09fd9f356697978fd Mon Sep 17 00:00:00 2001 From: mycroft Date: Tue, 3 Aug 2004 03:32:43 +0000 Subject: [PATCH] Modify prototype for pci_findvendor() and add pci_findproduct(). --- lib/libpci/pci.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/libpci/pci.h b/lib/libpci/pci.h index 8663e925408d..8e9eb9a4ec15 100644 --- a/lib/libpci/pci.h +++ b/lib/libpci/pci.h @@ -1,4 +1,4 @@ -/* $NetBSD: pci.h,v 1.2 2004/04/24 09:56:36 kleink Exp $ */ +/* $NetBSD: pci.h,v 1.3 2004/08/03 03:32:43 mycroft Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -53,7 +53,8 @@ int pcidev_conf_read(int, u_int, pcireg_t *); int pcidev_conf_write(int, u_int, pcireg_t); /* pci_subr.c */ -char *pci_findvendor(pcireg_t); +const char *pci_findvendor(pcireg_t); +const char *pci_findproduct(pcireg_t); void pci_devinfo(pcireg_t, pcireg_t, int, char *, size_t); void pci_conf_print(int, u_int, u_int, u_int);