prom.h 388 B

1234567891011121314151617
  1. #ifndef __PROM_H
  2. #define __PROM_H
  3. #include <linux/spinlock.h>
  4. #include <asm/prom.h>
  5. extern void * prom_early_alloc(unsigned long size);
  6. extern void irq_trans_init(struct device_node *dp);
  7. extern unsigned int prom_unique_id;
  8. extern char *build_path_component(struct device_node *dp);
  9. extern void of_console_init(void);
  10. extern unsigned int prom_early_allocated;
  11. #endif /* __PROM_H */