diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2008-07-15 18:44:34 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-15 18:44:34 +0100 |
commit | 6da5e30b879394f0c55b2bbf3353d797097c8f0f (patch) | |
tree | 217b9589a48a90cecd6fa65dd99e01df3b717c84 | |
parent | 1398ddb2ebdb41e8efe6ba42505fd452704c8405 (diff) | |
download | linux-3.10-6da5e30b879394f0c55b2bbf3353d797097c8f0f.tar.gz linux-3.10-6da5e30b879394f0c55b2bbf3353d797097c8f0f.tar.bz2 linux-3.10-6da5e30b879394f0c55b2bbf3353d797097c8f0f.zip |
[MIPS] Remove impossible ifdef and code wrapped by it.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/mips-boards/generic/time.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/mips/mips-boards/generic/time.c b/arch/mips/mips-boards/generic/time.c index 637897e8e4f..744dbfc6e48 100644 --- a/arch/mips/mips-boards/generic/time.c +++ b/arch/mips/mips-boards/generic/time.c @@ -70,19 +70,6 @@ static unsigned int __init estimate_cpu_frequency(void) unsigned int prid = read_c0_prid() & 0xffff00; unsigned int count; -#ifdef CONFIG_MIPS_SIM - /* - * The SEAD board doesn't have a real time clock, so we can't - * really calculate the timer frequency - * For now we hardwire the SEAD board frequency to 12MHz. - */ - - if ((prid == (PRID_COMP_MIPS | PRID_IMP_20KC)) || - (prid == (PRID_COMP_MIPS | PRID_IMP_25KF))) - count = 12000000; - else - count = 6000000; -#endif #ifdef CONFIG_MIPS_MALTA unsigned long flags; unsigned int start; |