[ACPI] 8250_acpi.c buildfix
[pandora-kernel.git] / arch / ppc64 / boot / prom.h
1 #ifndef _PPC_BOOT_PROM_H_
2 #define _PPC_BOOT_PROM_H_
3
4 extern int (*prom) (void *);
5 extern void *chosen_handle;
6
7 extern void *stdin;
8 extern void *stdout;
9 extern void *stderr;
10
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_ */