Gitweb: http://git.kernel.org/linus/94316cdadb0067ba6d1f08b9a6f84fe755bdaa38 Commit: 94316cdadb0067ba6d1f08b9a6f84fe755bdaa38 Parent: c6efd46b98f30863ca3a9982312db87b826cf715 Author: Paul Mundt <lethal@linux-sh.org> AuthorDate: Tue Mar 2 15:54:47 2010 +0900 Committer: Paul Mundt <lethal@linux-sh.org> CommitDate: Tue Mar 2 15:54:47 2010 +0900 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> --- arch/sh/include/asm/topology.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
