CVS commit: src/sys/arch/alpha/eisa

2013-06-27 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Jun 27 21:21:05 UTC 2013

Modified Files:
src/sys/arch/alpha/eisa: eisa_machdep.c

Log Message:
don't forget to insert the io to the list
http://M00nBSD.net/ae123a9bae03f7dde5c6d654412daf5a.html


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/alpha/eisa/eisa_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/alpha/eisa/eisa_machdep.c
diff -u src/sys/arch/alpha/eisa/eisa_machdep.c:1.9 src/sys/arch/alpha/eisa/eisa_machdep.c:1.10
--- src/sys/arch/alpha/eisa/eisa_machdep.c:1.9	Sun Feb  5 21:14:13 2012
+++ src/sys/arch/alpha/eisa/eisa_machdep.c	Thu Jun 27 17:21:05 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: eisa_machdep.c,v 1.9 2012/02/06 02:14:13 matt Exp $ */
+/* $NetBSD: eisa_machdep.c,v 1.10 2013/06/27 21:21:05 christos Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include sys/cdefs.h
 
-__KERNEL_RCSID(0, $NetBSD: eisa_machdep.c,v 1.9 2012/02/06 02:14:13 matt Exp $);
+__KERNEL_RCSID(0, $NetBSD: eisa_machdep.c,v 1.10 2013/06/27 21:21:05 christos Exp $);
 
 #include sys/param.h
 #include sys/systm.h
@@ -255,6 +255,7 @@ eisa_parse_io(struct ecu_func *ecuf, uin
 		ecuio-ecuio_io.ecio_addr = dp[1] | (dp[2]  8);
 		ecuio-ecuio_io.ecio_size = (dp[0]  0x1f) + 1;
 		ecuio-ecuio_io.ecio_shared = (dp[0]  0x40) ? 1 : 0;
+		SIMPLEQ_INSERT_TAIL(ecuf-ecuf_io, ecuio, ecuio_list);
 
 #ifdef EISA_DEBUG
 		printf(IO 0x%lx 0x%lx%s\n, ecuio-ecuio_io.ecio_addr,



CVS commit: src/sys/arch/alpha/eisa

2013-06-27 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Thu Jun 27 21:21:05 UTC 2013

Modified Files:
src/sys/arch/alpha/eisa: eisa_machdep.c

Log Message:
don't forget to insert the io to the list
http://M00nBSD.net/ae123a9bae03f7dde5c6d654412daf5a.html


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/alpha/eisa/eisa_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.