Bläddra i källkod

sh: Fix up cpumask_of_pcibus() for the NUMA build.

Trivial build fix, following the change from asm-generic/topology.h.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Paul Mundt 15 år sedan
förälder
incheckning
94316cdadb
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      arch/sh/include/asm/topology.h

+ 1 - 1
arch/sh/include/asm/topology.h

@@ -35,7 +35,7 @@
 
 
 #define pcibus_to_node(bus)	((void)(bus), -1)
 #define pcibus_to_node(bus)	((void)(bus), -1)
 #define cpumask_of_pcibus(bus)	(pcibus_to_node(bus) == -1 ? \
 #define cpumask_of_pcibus(bus)	(pcibus_to_node(bus) == -1 ? \
-					CPU_MASK_ALL_PTR : \
+					cpu_all_mask : \
 					cpumask_of_node(pcibus_to_node(bus)))
 					cpumask_of_node(pcibus_to_node(bus)))
 
 
 #endif
 #endif