diff options
author | 2006-05-23 00:41:50 +0000 | |
---|---|---|
committer | 2006-05-23 00:41:50 +0000 | |
commit | 182c2be4e2448e340c10e515583eebc9ac6bbf3f (patch) | |
tree | 6c2f4d7bcad086175009422897becaf51f0dc9dc /sys/dev/pci/if_rl_pci.c | |
parent | Check for NULL cookies before calling hook_disestablish(). Just in case (diff) | |
download | wireguard-openbsd-182c2be4e2448e340c10e515583eebc9ac6bbf3f.tar.xz wireguard-openbsd-182c2be4e2448e340c10e515583eebc9ac6bbf3f.zip |
according to the Linux 8139cp driver the TTTech MC322 adapter uses
the 8139C+ chipset, so attach with re(4) instead of rl(4).
ok dlg@
Diffstat (limited to 'sys/dev/pci/if_rl_pci.c')
-rw-r--r-- | sys/dev/pci/if_rl_pci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/if_rl_pci.c b/sys/dev/pci/if_rl_pci.c index 32c82485fb5..0393031b729 100644 --- a/sys/dev/pci/if_rl_pci.c +++ b/sys/dev/pci/if_rl_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rl_pci.c,v 1.13 2006/05/16 02:32:39 brad Exp $ */ +/* $OpenBSD: if_rl_pci.c,v 1.14 2006/05/23 00:41:50 brad Exp $ */ /* * Copyright (c) 1997, 1998 @@ -95,8 +95,7 @@ const struct pci_matchid rl_pci_devices[] = { { PCI_VENDOR_DELTA, PCI_PRODUCT_DELTA_8139 }, { PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_530TXPLUS }, { PCI_VENDOR_NORTEL, PCI_PRODUCT_NORTEL_BS21 }, - { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8129 }, - { PCI_VENDOR_TTTECH, PCI_PRODUCT_TTTECH_MC322 } + { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8129 } }; int |