diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-10-16 19:11:59 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-10-16 19:11:59 +0000 |
| commit | f371d460e683826ac2287dc163745ff263bf4ae8 (patch) | |
| tree | 45ddec98a34948f1e301a091ee4a23e414e77221 /sys/dev | |
| parent | a73f15c7a85999fad282a8619d6249da5f42cc1d (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 072dc5101e1b..869da3a349e7 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -176,7 +176,7 @@ are some peripherals that this causes problems with."); /* Find a device_t by bus/slot/function */ device_t -pci_find_bsf (u_int8_t bus, u_int8_t slot, u_int8_t func) +pci_find_bsf(u_int8_t bus, u_int8_t slot, u_int8_t func) { struct pci_devinfo *dinfo; @@ -194,7 +194,7 @@ pci_find_bsf (u_int8_t bus, u_int8_t slot, u_int8_t func) /* Find a device_t by vendor/device ID */ device_t -pci_find_device (u_int16_t vendor, u_int16_t device) +pci_find_device(u_int16_t vendor, u_int16_t device) { struct pci_devinfo *dinfo; |
