Module Name: src
Committed By: bsh
Date: Mon Nov 15 09:25:58 UTC 2010
Modified Files:
src/sys/arch/arm/pic: picvar.h
Log Message:
fix compile error about missing evcnt definition.
picvar.h is now included very early because of uebayashi's change to
sys/param.h.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 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.4 src/sys/arch/arm/pic/picvar.h:1.5
--- src/sys/arch/arm/pic/picvar.h:1.4 Tue Dec 30 05:43:14 2008
+++ src/sys/arch/arm/pic/picvar.h Mon Nov 15 09:25:58 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: picvar.h,v 1.4 2008/12/30 05:43:14 matt Exp $ */
+/* $NetBSD: picvar.h,v 1.5 2010/11/15 09:25:58 bsh Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -57,6 +57,8 @@
#ifdef _INTR_PRIVATE
+#include <sys/evcnt.h>
+
#ifndef PIC_MAXPICS
#define PIC_MAXPICS 32
#endif