Module Name: src
Committed By: he
Date: Wed Nov 16 12:40:53 UTC 2011
Modified Files:
src/sys/arch/arc/include: intr.h
Log Message:
Make sure "struct clockframe" is declared before declaring a
parameter as a pointer to that struct; fixes build problem for
getfstypename.c as part of libkern.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/arc/include/intr.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/arc/include/intr.h
diff -u src/sys/arch/arc/include/intr.h:1.23 src/sys/arch/arc/include/intr.h:1.24
--- src/sys/arch/arc/include/intr.h:1.23 Sun Feb 20 07:52:42 2011
+++ src/sys/arch/arc/include/intr.h Wed Nov 16 12:40:53 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.23 2011/02/20 07:52:42 matt Exp $ */
+/* $NetBSD: intr.h,v 1.24 2011/11/16 12:40:53 he Exp $ */
/*-
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -37,6 +37,8 @@
#ifdef _KERNEL
#ifndef _LOCORE
+struct clockframe;
+
void arc_set_intr(uint32_t, uint32_t (*)(uint32_t, struct clockframe *), int);
extern uint32_t cpu_int_mask;