Update libpci for change in pci_find{vendor,product} entrypoint names.

This commit is contained in:
pgoyette 2010-05-25 08:35:47 +00:00
parent 9b115d0bac
commit 2ac5480827
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pci.h,v 1.3 2004/08/03 03:32:43 mycroft Exp $ */
/* $NetBSD: pci.h,v 1.4 2010/05/25 08:35:47 pgoyette Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@ -53,8 +53,8 @@ int pcidev_conf_read(int, u_int, pcireg_t *);
int pcidev_conf_write(int, u_int, pcireg_t);
/* pci_subr.c */
const char *pci_findvendor(pcireg_t);
const char *pci_findproduct(pcireg_t);
const char *pci_findvendor_real(pcireg_t);
const char *pci_findproduct_real(pcireg_t);
void pci_devinfo(pcireg_t, pcireg_t, int, char *, size_t);
void pci_conf_print(int, u_int, u_int, u_int);