diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-04-02 22:26:17 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-04-02 22:26:17 +0000 |
commit | daa13976e64ee1470dd8457d817a9b62ecf7bb6b (patch) | |
tree | 68ff63e584b91398c2bc89448887d889651f3366 /sys | |
parent | 9f4ab4a868533393e437870087b6ae90ab4055ce (diff) |
Add support for the National Semiconductor Saturn (which really is a Sun
Cassini MAC integrated with a National Semiconductor DP83865 PHY).
Diffstat (limited to 'sys')
-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 |