diff options
author | Richard Kuo <rkuo@codeaurora.org> | 2013-02-04 15:17:15 -0500 |
---|---|---|
committer | Richard Kuo <rkuo@codeaurora.org> | 2013-04-30 20:40:25 -0400 |
commit | 2b3c744c3bcaab14ad2cc0f067d76c2f119085a5 (patch) | |
tree | 70f116281bcba799a12308c460228670b75360d4 /arch/hexagon/kernel | |
parent | 7777746c40876834c1527689336e43c8381b1921 (diff) |
Hexagon: don't print info for offline CPU's
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Diffstat (limited to 'arch/hexagon/kernel')
-rw-r--r-- | arch/hexagon/kernel/setup.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/hexagon/kernel/setup.c b/arch/hexagon/kernel/setup.c index 2e2304f7b7ee..d2dcb6bcdad7 100644 --- a/arch/hexagon/kernel/setup.c +++ b/arch/hexagon/kernel/setup.c | |||
@@ -130,6 +130,11 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
130 | { | 130 | { |
131 | int cpu = (unsigned long) v - 1; | 131 | int cpu = (unsigned long) v - 1; |
132 | 132 | ||
133 | #ifdef CONFIG_SMP | ||
134 | if (!cpu_online(cpu)) | ||
135 | return 0; | ||
136 | #endif | ||
137 | |||
133 | seq_printf(m, "processor\t: %d\n", cpu); | 138 | seq_printf(m, "processor\t: %d\n", cpu); |
134 | seq_printf(m, "model name\t: Hexagon Virtual Machine\n"); | 139 | seq_printf(m, "model name\t: Hexagon Virtual Machine\n"); |
135 | seq_printf(m, "BogoMips\t: %lu.%02lu\n", | 140 | seq_printf(m, "BogoMips\t: %lu.%02lu\n", |