diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-03-08 20:52:00 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-03-08 20:52:00 +0000 |
commit | 42da442c46a1ca0e4c4d43af1775690fe338388f (patch) | |
tree | d9db8000eb9d30df6b791a33e7db30524c54c0ac /sys | |
parent | 93f41b22c88cc93558ab60707cd82891a30afe32 (diff) |
Fix device id typo introduced in r1.41; found the hard way by Daniel Hamlin.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_fxp_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c index c415167332f..cb0cfdbab84 100644 --- a/sys/dev/pci/if_fxp_pci.c +++ b/sys/dev/pci/if_fxp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fxp_pci.c,v 1.45 2006/01/05 21:34:35 brad Exp $ */ +/* $OpenBSD: if_fxp_pci.c,v 1.46 2006/03/08 20:51:59 miod Exp $ */ /* * Copyright (c) 1995, David Greenman @@ -127,7 +127,7 @@ const struct pci_matchid fxp_pci_devices[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801E_LAN_1 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801E_LAN_2 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801FB_LAN }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_LAN_2 }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801FB_LAN_2 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801FBM_LAN }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_LAN }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_LAN_2 }, |