diff options
Diffstat (limited to 'sys/arch/sgi/pci/ioc.c')
-rw-r--r-- | sys/arch/sgi/pci/ioc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/sgi/pci/ioc.c b/sys/arch/sgi/pci/ioc.c index 00c2ee9383d..ab23c0a4766 100644 --- a/sys/arch/sgi/pci/ioc.c +++ b/sys/arch/sgi/pci/ioc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ioc.c,v 1.12 2009/05/02 21:31:21 miod Exp $ */ +/* $OpenBSD: ioc.c,v 1.13 2009/05/03 19:42:45 miod Exp $ */ /* * Copyright (c) 2008 Joel Sing. @@ -389,11 +389,11 @@ establish: ioc_attach_child(self, "com", 0x20170, IOCDEV_SERIAL_B); } if (has_ps2) - ioc_attach_child(self, "iockbc", -1, IOCDEV_KEYBOARD); + ioc_attach_child(self, "iockbc", 0, IOCDEV_KEYBOARD); if (has_ethernet) - ioc_attach_child(self, "ef", -1, IOCDEV_EF); + ioc_attach_child(self, "ef", 0, IOCDEV_EF); /* XXX what about the parallel port? */ - ioc_attach_child(self, "dsrtc", -1, IOCDEV_RTC); + ioc_attach_child(self, "dsrtc", 0, IOCDEV_RTC); return; |