Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/arm32 Fix the type of irqmasks (any reason it's...



details:   https://anonhg.NetBSD.org/src/rev/af382dd1c4f6
branches:  trunk
changeset: 521467:af382dd1c4f6
user:      chris <chris%NetBSD.org@localhost>
date:      Thu Jan 31 09:43:42 2002 +0000

description:
Fix the type of irqmasks (any reason it's even been added as an extern when it's in irqhandler.h with the correct type and array size?)

diffstat:

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

diffs (18 lines):

diff -r 7610f5870bad -r af382dd1c4f6 sys/arch/arm/arm32/intr.c
--- a/sys/arch/arm/arm32/intr.c Thu Jan 31 08:45:14 2002 +0000
+++ b/sys/arch/arm/arm32/intr.c Thu Jan 31 09:43:42 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: intr.c,v 1.7 2002/01/30 03:59:39 thorpej Exp $ */
+/*     $NetBSD: intr.c,v 1.8 2002/01/31 09:43:42 chris Exp $   */
 
 /*
  * Copyright (c) 1994-1998 Mark Brinicombe.
@@ -191,7 +191,7 @@
 u_int spl_smasks[_SPL_LEVELS];
 int safepri = _SPL_0;
 
-extern int irqmasks[];
+extern u_int irqmasks[];
 
 void
 set_spl_masks()



Home | Main Index | Thread Index | Old Index