From: Paul Mundt Date: Tue, 2 Mar 2010 06:54:47 +0000 (+0900) Subject: sh: Fix up cpumask_of_pcibus() for the NUMA build. X-Git-Tag: upstream/snapshot3+hdmi~15315^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=94316cdadb0067ba6d1f08b9a6f84fe755bdaa38;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 --- diff --git a/arch/sh/include/asm/topology.h b/arch/sh/include/asm/topology.h index 37cdadd..88e7340 100644 --- a/arch/sh/include/asm/topology.h +++ b/arch/sh/include/asm/topology.h @@ -35,7 +35,7 @@ #define pcibus_to_node(bus) ((void)(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))) #endif