diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2009-01-07 10:14:38 -0500 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2009-01-07 10:14:38 -0500 |
commit | 1ea9925553caad6ea5068b4652596f149e0be9c3 (patch) | |
tree | c28d3dd571409404d170eaa34105990d13a60e2c /arch | |
parent | a5f0717e51c5fe6cdaf885b7f621ba48ae745bfb (diff) |
Blackfin arch: delete now unused "cclk" member of blackfin_cpudata
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/include/asm/cpu.h | 1 | ||||
-rw-r--r-- | arch/blackfin/kernel/setup.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/arch/blackfin/include/asm/cpu.h b/arch/blackfin/include/asm/cpu.h index 9b7aefe7eb2d..c2594ef877f6 100644 --- a/arch/blackfin/include/asm/cpu.h +++ b/arch/blackfin/include/asm/cpu.h | |||
@@ -30,7 +30,6 @@ struct task_struct; | |||
30 | struct blackfin_cpudata { | 30 | struct blackfin_cpudata { |
31 | struct cpu cpu; | 31 | struct cpu cpu; |
32 | struct task_struct *idle; | 32 | struct task_struct *idle; |
33 | unsigned long cclk; | ||
34 | unsigned int imemctl; | 33 | unsigned int imemctl; |
35 | unsigned int dmemctl; | 34 | unsigned int dmemctl; |
36 | unsigned long loops_per_jiffy; | 35 | unsigned long loops_per_jiffy; |
diff --git a/arch/blackfin/kernel/setup.c b/arch/blackfin/kernel/setup.c index 0a5436737e97..b147ed90cadc 100644 --- a/arch/blackfin/kernel/setup.c +++ b/arch/blackfin/kernel/setup.c | |||
@@ -135,7 +135,6 @@ void __cpuinit bfin_setup_cpudata(unsigned int cpu) | |||
135 | 135 | ||
136 | cpudata->idle = current; | 136 | cpudata->idle = current; |
137 | cpudata->loops_per_jiffy = loops_per_jiffy; | 137 | cpudata->loops_per_jiffy = loops_per_jiffy; |
138 | cpudata->cclk = get_cclk(); | ||
139 | cpudata->imemctl = bfin_read_IMEM_CONTROL(); | 138 | cpudata->imemctl = bfin_read_IMEM_CONTROL(); |
140 | cpudata->dmemctl = bfin_read_DMEM_CONTROL(); | 139 | cpudata->dmemctl = bfin_read_DMEM_CONTROL(); |
141 | } | 140 | } |