603917a2c7
joins other machdep files) Saves maintaining multiple copies of the same thing, the only differences were: IRQ line used on the footbridge (made that a define in include/isa_machdep.h) name of a dma_ranges variable contained arch name, so just made it generic.
13 lines
304 B
C
13 lines
304 B
C
/* $NetBSD: isa_machdep.h,v 1.5 2002/10/12 11:53:40 chris Exp $ */
|
|
|
|
#ifndef _CATS_ISA_MACHDEP_H_
|
|
#define _CATS_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 /* _CATS_ISA_MACHDEP_H_ */
|