diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-05-22 21:21:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-05-22 21:21:20 +0000 |
commit | acb2ba7cbb3fedd280c0941a062dd5956ae13bd9 (patch) | |
tree | 55e120b0428fd2db81cf3c5b97eb5ddd0f3ab80f /sys/arch | |
parent | 1b14b5a0ab8f44cf9a7b23dc41ac7f7c7f936f5e (diff) |
According to pics on ebay, CADDuo boards indeed have Ethernet connectors.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sgi/pci/ioc.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/sgi/pci/ioc.c b/sys/arch/sgi/pci/ioc.c index 069ed82811e..f3610a8ed97 100644 --- a/sys/arch/sgi/pci/ioc.c +++ b/sys/arch/sgi/pci/ioc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ioc.c,v 1.14 2009/05/08 18:36:11 miod Exp $ */ +/* $OpenBSD: ioc.c,v 1.15 2009/05/22 21:21:19 miod Exp $ */ /* * Copyright (c) 2008 Joel Sing. @@ -221,11 +221,8 @@ ioc_attach(struct device *parent, struct device *self, void *aux) } else if (strncmp(sc->sc_owserial->sc_product, "030-1155-", 9) == 0) { /* CADDuo board */ - has_ps2 = 1; - /* - * XXX This card supposedly has the Ethernet part, too. - */ - /* has_ethernet = 1; shared_handler = 1; */ + has_ps2 = has_ethernet = 1; + shared_handler = 1; } else if (strncmp(sc->sc_owserial->sc_product, "030-1657-", 9) == 0 || strncmp(sc->sc_owserial->sc_product, "030-1664-", 9) == 0) { |