Module Name:    src
Committed By:   matt
Date:           Sat Sep  7 01:50:12 UTC 2013

Modified Files:
        src/sys/arch/arm/allwinner: awin_com.c

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


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/allwinner/awin_com.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/arm/allwinner/awin_com.c
diff -u src/sys/arch/arm/allwinner/awin_com.c:1.2 src/sys/arch/arm/allwinner/awin_com.c:1.3
--- src/sys/arch/arm/allwinner/awin_com.c:1.2	Sat Sep  7 00:35:52 2013
+++ src/sys/arch/arm/allwinner/awin_com.c	Sat Sep  7 01:50:12 2013
@@ -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 @@ awin_com_attach(device_t parent, device_
 	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",

Reply via email to