Module Name:    src
Committed By:   jakllsch
Date:           Sun Jul 22 17:14:18 UTC 2012

Modified Files:
        src/sys/arch/arm/marvell: mvsoc_intr.c

Log Message:
Use IST_LEVEL_HIGH for the ist argument to intr_establish() (as is done in
marvell_intr_establish() and other relevant places) instead of 0 in
mvsoc_bridge_intr_establish().  This IST argument isn't used anywhere,
but it looks better this way.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/marvell/mvsoc_intr.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/marvell/mvsoc_intr.c
diff -u src/sys/arch/arm/marvell/mvsoc_intr.c:1.3 src/sys/arch/arm/marvell/mvsoc_intr.c:1.4
--- src/sys/arch/arm/marvell/mvsoc_intr.c:1.3	Sat Aug 13 15:38:47 2011
+++ src/sys/arch/arm/marvell/mvsoc_intr.c	Sun Jul 22 17:14:18 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: mvsoc_intr.c,v 1.3 2011/08/13 15:38:47 jakllsch Exp $	*/
+/*	$NetBSD: mvsoc_intr.c,v 1.4 2012/07/22 17:14:18 jakllsch Exp $	*/
 /*
  * Copyright (c) 2010 KIYOHARA Takashi
  * All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mvsoc_intr.c,v 1.3 2011/08/13 15:38:47 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mvsoc_intr.c,v 1.4 2012/07/22 17:14:18 jakllsch Exp $");
 
 #define _INTR_PRIVATE
 
@@ -96,8 +96,8 @@ void *
 mvsoc_bridge_intr_establish(int ih, int ipl, int (*ih_func)(void *), void *arg)
 {
 
-	return intr_establish(mvsoc_bridge_pic.pic_irqbase + ih, ipl, 0,
-	    ih_func, arg);
+	return intr_establish(mvsoc_bridge_pic.pic_irqbase + ih, ipl,
+	    IST_LEVEL_HIGH, ih_func, arg);
 }
 
 /* ARGSUSED */

Reply via email to