Module Name:    src
Committed By:   cliff
Date:           Sat Jan 16 23:50:33 UTC 2010

Modified Files:
        src/sys/arch/evbmips/rmixl [matt-nb5-mips64]: autoconf.h

Log Message:
- add struct mainbus_softc
- struct mainbus_attach_args loses ma_core, gets ma_node


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/arch/evbmips/rmixl/autoconf.h

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/evbmips/rmixl/autoconf.h
diff -u src/sys/arch/evbmips/rmixl/autoconf.h:1.1.2.1 src/sys/arch/evbmips/rmixl/autoconf.h:1.1.2.2
--- src/sys/arch/evbmips/rmixl/autoconf.h:1.1.2.1	Wed Jan 13 09:40:09 2010
+++ src/sys/arch/evbmips/rmixl/autoconf.h	Sat Jan 16 23:50:32 2010
@@ -1,11 +1,17 @@
-/*	$NetBSD: autoconf.h,v 1.1.2.1 2010/01/13 09:40:09 cliff Exp $	*/
+/*	$NetBSD: autoconf.h,v 1.1.2.2 2010/01/16 23:50:32 cliff Exp $	*/
 
 #ifndef _EVBMIPS_RMIXL_AUTOCONF_H_
 #define _EVBMIPS_RMIXL_AUTOCONF_H_
 
+struct mainbus_softc {
+	device_t	sc_dev;
+	int		sc_node_next;
+	uint64_t	sc_node_mask;
+};
+
 struct mainbus_attach_args {
 	const char     *ma_name;
-	int		ma_core;
+	int		ma_node;
 };
 
 #endif	/* _EVBMIPS_RMIXL_AUTOCONF_H_ */

Reply via email to