aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm/prom.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/include/asm/prom.h')
-rw-r--r--arch/powerpc/include/asm/prom.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/prom.h b/arch/powerpc/include/asm/prom.h
index da7dd634e7ce..55bccc0a21c3 100644
--- a/arch/powerpc/include/asm/prom.h
+++ b/arch/powerpc/include/asm/prom.h
@@ -103,6 +103,13 @@ struct device_node *of_find_next_cache_node(struct device_node *np);
103/* Get the MAC address */ 103/* Get the MAC address */
104extern const void *of_get_mac_address(struct device_node *np); 104extern const void *of_get_mac_address(struct device_node *np);
105 105
106#ifdef CONFIG_NUMA
107extern int of_node_to_nid(struct device_node *device);
108#else
109static inline int of_node_to_nid(struct device_node *device) { return 0; }
110#endif
111#define of_node_to_nid of_node_to_nid
112
106/** 113/**
107 * of_irq_map_pci - Resolve the interrupt for a PCI device 114 * of_irq_map_pci - Resolve the interrupt for a PCI device
108 * @pdev: the device whose interrupt is to be resolved 115 * @pdev: the device whose interrupt is to be resolved