aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/topology.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-powerpc/topology.h')
-rw-r--r--include/asm-powerpc/topology.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asm-powerpc/topology.h b/include/asm-powerpc/topology.h
index b7abd423c570..f4c759b5f6cc 100644
--- a/include/asm-powerpc/topology.h
+++ b/include/asm-powerpc/topology.h
@@ -32,13 +32,13 @@ static inline int node_to_first_cpu(int node)
32 32
33int of_node_to_nid(struct device_node *device); 33int of_node_to_nid(struct device_node *device);
34 34
35#ifdef CONFIG_PPC64 35struct pci_bus;
36#define pcibus_to_node(bus) (of_node_to_nid(bus->sysdata)) 36extern int pcibus_to_node(struct pci_bus *bus);
37#define pcibus_to_cpumask(bus) (node_to_cpumask(of_node_to_nid(bus->sysdata))) 37
38#else 38#define pcibus_to_cpumask(bus) (pcibus_to_node(bus) == -1 ? \
39#define pcibus_to_node(node) (-1) 39 CPU_MASK_ALL : \
40#define pcibus_to_cpumask(bus) (cpu_online_map) 40 node_to_cpumask(pcibus_to_node(bus)) \
41#endif 41 )
42 42
43/* sched_domains SD_NODE_INIT for PPC64 machines */ 43/* sched_domains SD_NODE_INIT for PPC64 machines */
44#define SD_NODE_INIT (struct sched_domain) { \ 44#define SD_NODE_INIT (struct sched_domain) { \