mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 22:53:55 +08:00
5fce09c6f6
All sparc64 specific, so only build this file on sparc64. Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
371 B
C
17 lines
371 B
C
#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 */
|