Module Name: src
Committed By: jmcneill
Date: Sat Sep 8 11:54:26 UTC 2018
Modified Files:
src/sys/arch/arm/pic: picvar.h
Log Message:
Increase the size of is_irq from 8- to 16-bits to allow for > 256 IRQs per pic.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/arm/pic/picvar.h
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/pic/picvar.h
diff -u src/sys/arch/arm/pic/picvar.h:1.18 src/sys/arch/arm/pic/picvar.h:1.19
--- src/sys/arch/arm/pic/picvar.h:1.18 Mon Jul 16 10:13:34 2018
+++ src/sys/arch/arm/pic/picvar.h Sat Sep 8 11:54:26 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: picvar.h,v 1.18 2018/07/16 10:13:34 jmcneill Exp $ */
+/* $NetBSD: picvar.h,v 1.19 2018/09/08 11:54:26 jmcneill Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -114,7 +114,7 @@ struct intrsource {
struct pic_softc *is_pic; /* owning PIC */
uint8_t is_type; /* IST_xxx */
uint8_t is_ipl; /* IPL_xxx */
- uint8_t is_irq; /* local to pic */
+ uint16_t is_irq; /* local to pic */
uint8_t is_iplidx;
bool is_mpsafe;
char is_source[16];