diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2011-08-26 01:05:41 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-09-05 00:24:37 -0400 |
commit | 6988d647231d284733f6c8bfea473a17dccdd39f (patch) | |
tree | 49474cad9c3f8e1c44bdf6b305cfb89bc7e52595 /arch/sh | |
parent | 9e79e3e9dd9672b37ac9412e9a926714306551fe (diff) |
sh: Fix implicit declaration of function numa_node_id
CC arch/sh/kernel/topology.o
arch/sh/kernel/topology.c: In function ‘topology_init’:
arch/sh/kernel/topology.c:77: error: implicit declaration of function ‘numa_node_id’
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/topology.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/kernel/topology.c b/arch/sh/kernel/topology.c index 38e862852dd0..ecc2d3d0f54a 100644 --- a/arch/sh/kernel/topology.c +++ b/arch/sh/kernel/topology.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/cpumask.h> | 11 | #include <linux/cpumask.h> |
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/percpu.h> | 13 | #include <linux/percpu.h> |
14 | #include <linux/topology.h> | ||
14 | #include <linux/node.h> | 15 | #include <linux/node.h> |
15 | #include <linux/nodemask.h> | 16 | #include <linux/nodemask.h> |
16 | 17 | ||