blob: b7258ce87cccaaaf639df1fa2dea1226d6051f31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
#endif /* __PROM_H */
|