diff options
-rw-r--r-- | arch/microblaze/include/asm/topology.h | 10 | ||||
-rw-r--r-- | arch/powerpc/include/asm/prom.h | 7 | ||||
-rw-r--r-- | arch/powerpc/include/asm/topology.h | 7 | ||||
-rw-r--r-- | arch/sparc/include/asm/prom.h | 3 | ||||
-rw-r--r-- | include/linux/of.h | 5 |
5 files changed, 13 insertions, 19 deletions
diff --git a/arch/microblaze/include/asm/topology.h b/arch/microblaze/include/asm/topology.h index 96bcea5a9920..5428f333a02c 100644 --- a/arch/microblaze/include/asm/topology.h +++ b/arch/microblaze/include/asm/topology.h | |||
@@ -1,11 +1 @@ | |||
1 | #include <asm-generic/topology.h> | #include <asm-generic/topology.h> | |
2 | |||
3 | #ifndef _ASM_MICROBLAZE_TOPOLOGY_H | ||
4 | #define _ASM_MICROBLAZE_TOPOLOGY_H | ||
5 | |||
6 | struct device_node; | ||
7 | static inline int of_node_to_nid(struct device_node *device) | ||
8 | { | ||
9 | return 0; | ||
10 | } | ||
11 | #endif /* _ASM_MICROBLAZE_TOPOLOGY_H */ | ||
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 */ |
104 | extern const void *of_get_mac_address(struct device_node *np); | 104 | extern const void *of_get_mac_address(struct device_node *np); |
105 | 105 | ||
106 | #ifdef CONFIG_NUMA | ||
107 | extern int of_node_to_nid(struct device_node *device); | ||
108 | #else | ||
109 | static 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 |
diff --git a/arch/powerpc/include/asm/topology.h b/arch/powerpc/include/asm/topology.h index 32adf7280720..09dd38c8882c 100644 --- a/arch/powerpc/include/asm/topology.h +++ b/arch/powerpc/include/asm/topology.h | |||
@@ -41,8 +41,6 @@ static inline int cpu_to_node(int cpu) | |||
41 | cpu_all_mask : \ | 41 | cpu_all_mask : \ |
42 | node_to_cpumask_map[node]) | 42 | node_to_cpumask_map[node]) |
43 | 43 | ||
44 | int of_node_to_nid(struct device_node *device); | ||
45 | |||
46 | struct pci_bus; | 44 | struct pci_bus; |
47 | #ifdef CONFIG_PCI | 45 | #ifdef CONFIG_PCI |
48 | extern int pcibus_to_node(struct pci_bus *bus); | 46 | extern int pcibus_to_node(struct pci_bus *bus); |
@@ -94,11 +92,6 @@ extern void sysfs_remove_device_from_node(struct sys_device *dev, int nid); | |||
94 | 92 | ||
95 | #else | 93 | #else |
96 | 94 | ||
97 | static inline int of_node_to_nid(struct device_node *device) | ||
98 | { | ||
99 | return 0; | ||
100 | } | ||
101 | |||
102 | static inline void dump_numa_cpu_topology(void) {} | 95 | static inline void dump_numa_cpu_topology(void) {} |
103 | 96 | ||
104 | static inline int sysfs_add_device_to_node(struct sys_device *dev, int nid) | 97 | static inline int sysfs_add_device_to_node(struct sys_device *dev, int nid) |
diff --git a/arch/sparc/include/asm/prom.h b/arch/sparc/include/asm/prom.h index c82a7da25f9f..291f12575edd 100644 --- a/arch/sparc/include/asm/prom.h +++ b/arch/sparc/include/asm/prom.h | |||
@@ -43,8 +43,7 @@ extern int of_getintprop_default(struct device_node *np, | |||
43 | extern int of_find_in_proplist(const char *list, const char *match, int len); | 43 | extern int of_find_in_proplist(const char *list, const char *match, int len); |
44 | #ifdef CONFIG_NUMA | 44 | #ifdef CONFIG_NUMA |
45 | extern int of_node_to_nid(struct device_node *dp); | 45 | extern int of_node_to_nid(struct device_node *dp); |
46 | #else | 46 | #define of_node_to_nid of_node_to_nid |
47 | #define of_node_to_nid(dp) (-1) | ||
48 | #endif | 47 | #endif |
49 | 48 | ||
50 | extern void prom_build_devicetree(void); | 49 | extern void prom_build_devicetree(void); |
diff --git a/include/linux/of.h b/include/linux/of.h index b0756f33249e..cad7cf0ab278 100644 --- a/include/linux/of.h +++ b/include/linux/of.h | |||
@@ -146,6 +146,11 @@ static inline unsigned long of_read_ulong(const __be32 *cell, int size) | |||
146 | 146 | ||
147 | #define OF_BAD_ADDR ((u64)-1) | 147 | #define OF_BAD_ADDR ((u64)-1) |
148 | 148 | ||
149 | #ifndef of_node_to_nid | ||
150 | static inline int of_node_to_nid(struct device_node *np) { return -1; } | ||
151 | #define of_node_to_nid of_node_to_nid | ||
152 | #endif | ||
153 | |||
149 | extern struct device_node *of_find_node_by_name(struct device_node *from, | 154 | extern struct device_node *of_find_node_by_name(struct device_node *from, |
150 | const char *name); | 155 | const char *name); |
151 | #define for_each_node_by_name(dn, name) \ | 156 | #define for_each_node_by_name(dn, name) \ |