1 /*
2 * some sbus structures and macros to make usage of sbus drivers possible
3 */
4
5 #ifndef __M68K_SBUS_H
6 #define __M68K_SBUS_H
7
8 struct linux_sbus_device {
9 struct {
10 unsigned int which_io;
11 unsigned int phys_addr;
12 } reg_addrs[1];
13 };
14
15 extern void *sparc_alloc_io (u32, void *, int, char *, u32, int);
16 #define sparc_alloc_io(a,b,c,d,e,f) (a)
17
18 #define ARCH_SUN4 0
19
20 #endif
21
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.