Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/powerpc/ibm4xx Fix the mistake in level and type.
details: https://anonhg.NetBSD.org/src/rev/19f65c5dafc8
branches: trunk
changeset: 772000:19f65c5dafc8
user: kiyohara <kiyohara%NetBSD.org@localhost>
date: Tue Dec 13 10:55:45 2011 +0000
description:
Fix the mistake in level and type.
diffstat:
sys/arch/powerpc/ibm4xx/pic_uic.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r a667946d833b -r 19f65c5dafc8 sys/arch/powerpc/ibm4xx/pic_uic.c
--- a/sys/arch/powerpc/ibm4xx/pic_uic.c Tue Dec 13 08:16:40 2011 +0000
+++ b/sys/arch/powerpc/ibm4xx/pic_uic.c Tue Dec 13 10:55:45 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pic_uic.c,v 1.1 2011/06/20 17:44:33 matt Exp $ */
+/* $NetBSD: pic_uic.c,v 1.2 2011/12/13 10:55:45 kiyohara Exp $ */
/*
* Copyright 2002 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pic_uic.c,v 1.1 2011/06/20 17:44:33 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pic_uic.c,v 1.2 2011/12/13 10:55:45 kiyohara Exp $");
#include <sys/param.h>
#include <sys/malloc.h>
@@ -214,7 +214,7 @@
static void
uic1_finish_setup(struct pic_ops *pic)
{
- intr_establish(30, IPL_NONE, IST_LEVEL, pic_handle_intr, &pic_uic1);
+ intr_establish(30, IST_LEVEL, IPL_NONE, pic_handle_intr, &pic_uic1);
}
struct uic uic1 = {
@@ -269,7 +269,7 @@
static void
uic2_finish_setup(struct pic_ops *pic)
{
- intr_establish(28, IPL_NONE, IST_LEVEL, pic_handle_intr, &pic_uic2);
+ intr_establish(28, IST_LEVEL, IPL_NONE, pic_handle_intr, &pic_uic2);
}
static struct uic uic2 = {
Home |
Main Index |
Thread Index |
Old Index