Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/evbppc/obs405 Fix UIC cascading. UIC1 to IRQ 30, U...



details:   https://anonhg.NetBSD.org/src/rev/5a0018d8f711
branches:  trunk
changeset: 762665:5a0018d8f711
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Fri Feb 25 10:16:59 2011 +0000

description:
Fix UIC cascading.  UIC1 to IRQ 30, UIC2 to 28.

diffstat:

 sys/arch/evbppc/obs405/obs600_autoconf.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 31751ffc9a0d -r 5a0018d8f711 sys/arch/evbppc/obs405/obs600_autoconf.c
--- a/sys/arch/evbppc/obs405/obs600_autoconf.c  Fri Feb 25 10:12:44 2011 +0000
+++ b/sys/arch/evbppc/obs405/obs600_autoconf.c  Fri Feb 25 10:16:59 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: obs600_autoconf.c,v 1.1 2010/03/18 14:15:38 kiyohara Exp $     */
+/*     $NetBSD: obs600_autoconf.c,v 1.2 2011/02/25 10:16:59 kiyohara Exp $     */
 
 /*
  * Copyright 2004 Shigeyuki Fukushima.
@@ -33,7 +33,7 @@
  * DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: obs600_autoconf.c,v 1.1 2010/03/18 14:15:38 kiyohara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: obs600_autoconf.c,v 1.2 2011/02/25 10:16:59 kiyohara Exp $");
 
 #include <sys/systm.h>
 #include <sys/device.h>
@@ -56,8 +56,8 @@
 
        /* Initialize intr and add UICs */
        intr_init();
-       uic_add(DCR_UIC1_BASE, 28);     /* UIC1 cascade to irq 28 */
-       uic_add(DCR_UIC2_BASE, 30);     /* UIC2 cascade to irq 30 */
+       uic_add(DCR_UIC1_BASE, 30);     /* UIC1 cascade to irq 30 */
+       uic_add(DCR_UIC2_BASE, 28);     /* UIC2 cascade to irq 28 */
 
        calc_delayconst();
 



Home | Main Index | Thread Index | Old Index