blob: 38b9b56e7ad1235f37c677c3108c0056e40e8dee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $OpenBSD: isa_machdep.h,v 1.2 2011/03/23 16:54:34 pirofti Exp $ */
/* $NetBSD: isa_machdep.h,v 1.4 2002/01/07 22:58:08 chris Exp $ */
#ifndef _MACHINE_ISA_MACHDEP_H_
#define _MACHINE_ISA_MACHDEP_H_
#include <arm/isa_machdep.h>
#ifdef _KERNEL
#define ISA_FOOTBRIDGE_IRQ IRQ_IN_L2
void isa_footbridge_init(u_int, u_int);
#endif /* _KERNEL */
#endif /* _MACHINE_ISA_MACHDEP_H_ */
|