Deleted Added
full compact
28c28
< __FBSDID("$FreeBSD: head/sys/dev/pci/hostb_pci.c 219902 2011-03-23 13:10:15Z jhb $");
---
> __FBSDID("$FreeBSD: head/sys/dev/pci/hostb_pci.c 232472 2012-03-03 18:08:57Z jhb $");
199a200,207
> pci_hostb_find_cap(device_t dev, device_t child, int capability,
> int *capreg)
> {
>
> return (pci_find_cap(dev, capability, capreg));
> }
>
> static int
206a215,222
> static int
> pci_hostb_find_htcap(device_t dev, device_t child, int capability,
> int *capreg)
> {
>
> return (pci_find_htcap(dev, capability, capreg));
> }
>
235a252
> DEVMETHOD(pci_find_cap, pci_hostb_find_cap),
236a254
> DEVMETHOD(pci_find_htcap, pci_hostb_find_htcap),