diff options
author | 2008-04-02 22:26:16 +0000 | |
---|---|---|
committer | 2008-04-02 22:26:16 +0000 | |
commit | 048d60b8b7eba1f6985b48da9225d6b5974b598d (patch) | |
tree | a7be05fdcd0f5802951be31abce738ccac22cda1 | |
parent | Add support for the DP83865. (diff) | |
download | wireguard-openbsd-048d60b8b7eba1f6985b48da9225d6b5974b598d.tar.xz wireguard-openbsd-048d60b8b7eba1f6985b48da9225d6b5974b598d.zip |
Add support for the National Semiconductor Saturn (which really is a Sun
Cassini MAC integrated with a National Semiconductor DP83865 PHY).
-rw-r--r-- | sys/dev/pci/if_cas.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_cas.c b/sys/dev/pci/if_cas.c index 9da60e32921..aef2ae73a52 100644 --- a/sys/dev/pci/if_cas.c +++ b/sys/dev/pci/if_cas.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cas.c,v 1.14 2008/02/08 10:56:41 thib Exp $ */ +/* $OpenBSD: if_cas.c,v 1.15 2008/04/02 22:26:16 kettenis Exp $ */ /* * @@ -152,7 +152,8 @@ int cas_intr(void *); #endif const struct pci_matchid cas_pci_devices[] = { - { PCI_VENDOR_SUN, PCI_PRODUCT_SUN_CASSINI } + { PCI_VENDOR_SUN, PCI_PRODUCT_SUN_CASSINI }, + { PCI_VENDOR_NS, PCI_PRODUCT_NS_SATURN } }; int |