Module Name:    src
Committed By:   matt
Date:           Fri Jun 24 23:54:37 UTC 2011

Modified Files:
        src/sys/arch/evbppc/mpc85xx: autoconf.c

Log Message:
Use intr_init since we have it.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/evbppc/mpc85xx/autoconf.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/evbppc/mpc85xx/autoconf.c
diff -u src/sys/arch/evbppc/mpc85xx/autoconf.c:1.4 src/sys/arch/evbppc/mpc85xx/autoconf.c:1.5
--- src/sys/arch/evbppc/mpc85xx/autoconf.c:1.4	Sat Jun 18 06:36:25 2011
+++ src/sys/arch/evbppc/mpc85xx/autoconf.c	Fri Jun 24 23:54:37 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.4 2011/06/18 06:36:25 matt Exp $	*/
+/*	$NetBSD: autoconf.c,v 1.5 2011/06/24 23:54:37 matt Exp $	*/
 /*-
  * Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.4 2011/06/18 06:36:25 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.5 2011/06/24 23:54:37 matt Exp $");
 
 #define __INTR_PRIVATE
 
@@ -58,7 +58,7 @@
 cpu_configure(void)
 {
 
-	(*powerpc_intrsw->intrsw_init)();
+	intr_init();
 	calc_delayconst();
 
 	if (config_rootfound("mainbus", NULL) == NULL)

Reply via email to