Module Name: src
Committed By: ryo
Date: Wed Mar 27 07:29:29 UTC 2019
Modified Files:
src/sys/arch/arm/pic: picvar.h
Log Message:
enlarge pic_name[] from 14 to 16. [email protected] used to the limit.
(sizeof struct pic_softc was not changed. it's just same as padding)
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 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.22 src/sys/arch/arm/pic/picvar.h:1.23
--- src/sys/arch/arm/pic/picvar.h:1.22 Fri Nov 16 15:06:22 2018
+++ src/sys/arch/arm/pic/picvar.h Wed Mar 27 07:29:29 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: picvar.h,v 1.22 2018/11/16 15:06:22 jmcneill Exp $ */
+/* $NetBSD: picvar.h,v 1.23 2019/03/27 07:29:29 ryo Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -149,7 +149,7 @@ struct pic_softc {
percpu_t *pic_percpu;
uint8_t pic_id;
int pic_irqbase;
- char pic_name[14];
+ char pic_name[16];
};
struct pic_ops {