Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/allwinner This uses an EDGE interrupt. (D'oh)



details:   https://anonhg.NetBSD.org/src/rev/bbe6ad2e4423
branches:  trunk
changeset: 789757:bbe6ad2e4423
user:      matt <matt%NetBSD.org@localhost>
date:      Sat Sep 07 01:50:12 2013 +0000

description:
This uses an EDGE interrupt. (D'oh)

diffstat:

 sys/arch/arm/allwinner/awin_com.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r c4ada7fdda08 -r bbe6ad2e4423 sys/arch/arm/allwinner/awin_com.c
--- a/sys/arch/arm/allwinner/awin_com.c Sat Sep 07 01:42:44 2013 +0000
+++ b/sys/arch/arm/allwinner/awin_com.c Sat Sep 07 01:50:12 2013 +0000
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(1, "$NetBSD: awin_com.c,v 1.2 2013/09/07 00:35:52 matt Exp $");
+__KERNEL_RCSID(1, "$NetBSD: awin_com.c,v 1.3 2013/09/07 01:50:12 matt Exp $");
 
 #include <sys/bus.h>
 #include <sys/device.h>
@@ -150,7 +150,7 @@
        aprint_naive("\n");
 
        KASSERT(loc->loc_intr != AWINIO_INTR_DEFAULT);
-       asc->asc_ih = intr_establish(loc->loc_intr, IPL_SERIAL, IST_LEVEL,
+       asc->asc_ih = intr_establish(loc->loc_intr, IPL_SERIAL, IST_EDGE,
            comintr, sc);
        if (asc->asc_ih == NULL)
                panic("%s: failed to establish interrupt %d",



Home | Main Index | Thread Index | Old Index