diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-04-13 19:12:39 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-05-25 08:13:42 -0400 |
commit | 2951acba8510a37c6b56f8481906a809c5eb3b0e (patch) | |
tree | 178c574990bbec24143180bfd39f85d7a2de7d6b /arch/blackfin | |
parent | 44491fbc5a228f3c2e61d842fd9fee0bfb839373 (diff) |
Blackfin: SMP: drop unused blackfin_cpudata.idle pointer
Not sure when we stopped using this field, but nothing in the tree uses
this now, so punt it.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/include/asm/cpu.h | 3 | ||||
-rw-r--r-- | arch/blackfin/kernel/setup.c | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/arch/blackfin/include/asm/cpu.h b/arch/blackfin/include/asm/cpu.h index 16883e582e3c..05043786da21 100644 --- a/arch/blackfin/include/asm/cpu.h +++ b/arch/blackfin/include/asm/cpu.h | |||
@@ -10,11 +10,8 @@ | |||
10 | 10 | ||
11 | #include <linux/percpu.h> | 11 | #include <linux/percpu.h> |
12 | 12 | ||
13 | struct task_struct; | ||
14 | |||
15 | struct blackfin_cpudata { | 13 | struct blackfin_cpudata { |
16 | struct cpu cpu; | 14 | struct cpu cpu; |
17 | struct task_struct *idle; | ||
18 | unsigned int imemctl; | 15 | unsigned int imemctl; |
19 | unsigned int dmemctl; | 16 | unsigned int dmemctl; |
20 | }; | 17 | }; |
diff --git a/arch/blackfin/kernel/setup.c b/arch/blackfin/kernel/setup.c index 11eff2c3e980..fb4714f486fa 100644 --- a/arch/blackfin/kernel/setup.c +++ b/arch/blackfin/kernel/setup.c | |||
@@ -165,7 +165,6 @@ void __cpuinit bfin_setup_cpudata(unsigned int cpu) | |||
165 | { | 165 | { |
166 | struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu); | 166 | struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu); |
167 | 167 | ||
168 | cpudata->idle = current; | ||
169 | cpudata->imemctl = bfin_read_IMEM_CONTROL(); | 168 | cpudata->imemctl = bfin_read_IMEM_CONTROL(); |
170 | cpudata->dmemctl = bfin_read_DMEM_CONTROL(); | 169 | cpudata->dmemctl = bfin_read_DMEM_CONTROL(); |
171 | } | 170 | } |