diff options
author | Bill Paul <wpaul@FreeBSD.org> | 2003-08-15 22:46:47 +0000 |
---|---|---|
committer | Bill Paul <wpaul@FreeBSD.org> | 2003-08-15 22:46:47 +0000 |
commit | 7d673c8636d8247c6a23179d7960728dde9837f0 (patch) | |
tree | be6ed1c4d0d558d2f97df5b91e2d1c5b0213ae9a /sys/pci/if_rl.c | |
parent | 2cdcddd06e5862119d7badf4bbfb996e6808832a (diff) | |
download | src-7d673c8636d8247c6a23179d7960728dde9837f0.tar.gz src-7d673c8636d8247c6a23179d7960728dde9837f0.zip |
It appears in some configurations with an on-board RTL8100 chip (in this
case, a "Vortex86" mini PC), the PCI device ID value in the EEPROM (0x8100)
does not agree with the PCI device ID returned by pci_get_device() (0x8139).
This means that while rl_probe() matches the device, rl_attach() doesn't.
Work around this by adding an entry to the rl_devs table for the 8100 with
a device ID of 0x8100.
Also, get rid of extra instance of __FBSDID(). One is enough.
Notes
Notes:
svn path=/head/; revision=118977
Diffstat (limited to 'sys/pci/if_rl.c')
-rw-r--r-- | sys/pci/if_rl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c index 68cf0494ec5f..ffd9a26e8e1b 100644 --- a/sys/pci/if_rl.c +++ b/sys/pci/if_rl.c @@ -186,8 +186,6 @@ MODULE_DEPEND(rl, miibus, 1, 1, 1); #include <pci/if_rlreg.h> -__FBSDID("$FreeBSD$"); - #define RL_CSUM_FEATURES (CSUM_IP | CSUM_TCP | CSUM_UDP) /* |