1 #ifndef _PPC_BOOT_PROM_H_
2 #define _PPC_BOOT_PROM_H_
4 extern int (*prom
) (void *);
5 extern void *chosen_handle
;
11 extern int write(void *handle
, void *ptr
, int nb
);
12 extern int read(void *handle
, void *ptr
, int nb
);
13 extern void exit(void);
14 extern void pause(void);
15 extern void *finddevice(const char *);
16 extern void *claim(unsigned long virt
, unsigned long size
, unsigned long align
);
17 extern int getprop(void *phandle
, const char *name
, void *buf
, int buflen
);
18 #endif /* _PPC_BOOT_PROM_H_ */