Module Name: src Committed By: matt Date: Tue Jun 21 04:19:22 UTC 2011
Modified Files: src/sys/arch/powerpc/include/booke: intr.h Log Message: forward declare cpu_info and trapframe. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/powerpc/include/booke/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/powerpc/include/booke/intr.h diff -u src/sys/arch/powerpc/include/booke/intr.h:1.5 src/sys/arch/powerpc/include/booke/intr.h:1.6 --- src/sys/arch/powerpc/include/booke/intr.h:1.5 Wed Jun 15 15:11:50 2011 +++ src/sys/arch/powerpc/include/booke/intr.h Tue Jun 21 04:19:22 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: intr.h,v 1.5 2011/06/15 15:11:50 matt Exp $ */ +/* $NetBSD: intr.h,v 1.6 2011/06/21 04:19:22 matt Exp $ */ /*- * Copyright (c) 2010, 2011 The NetBSD Foundation, Inc. * All rights reserved. @@ -79,6 +79,8 @@ #ifndef _LOCORE +struct cpu_info; + void *intr_establish(int, int, int, int (*)(void *), void *); void intr_disestablish(void *); void intr_cpu_attach(struct cpu_info *); @@ -111,6 +113,8 @@ #ifdef __INTR_PRIVATE +struct trapframe; + struct intrsw { void *(*intrsw_establish)(int, int, int, int (*)(void *), void *); void (*intrsw_disestablish)(void *);