blob: 49925101f8f861c4422c4bdde35e11931e6109b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __PROM_H
#define __PROM_H
#include <linux/spinlock.h>
#include <asm/prom.h>
extern struct device_node *allnodes; /* temporary while merging */
extern rwlock_t devtree_lock; /* temporary while merging */
extern void * prom_early_alloc(unsigned long size);
#ifdef CONFIG_SPARC64
extern void irq_trans_init(struct device_node *dp);
#endif
#endif /* __PROM_H */
|