diff options
author | Sonic Zhang <sonic.zhang@analog.com> | 2012-07-17 09:40:15 +0400 |
---|---|---|
committer | Bob Liu <lliubbo@gmail.com> | 2012-07-24 09:39:53 +0400 |
commit | 7c7d02772f66350a837f30505d4c5496fa0087f3 (patch) | |
tree | 140675dc2f9ee94e258fece63cbf31db71809356 /arch/blackfin | |
parent | e942d619fdd8eb9194c1305ea5968ffb78619f0d (diff) | |
download | linux-7c7d02772f66350a837f30505d4c5496fa0087f3.tar.xz |
bf60x: cpufreq: fix anomaly 05000273
Anomaly 05000273 doesn't apply to bf60x.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/mach-common/cpufreq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/blackfin/mach-common/cpufreq.c b/arch/blackfin/mach-common/cpufreq.c index aee82a1a1ba4..c854a27cbeab 100644 --- a/arch/blackfin/mach-common/cpufreq.c +++ b/arch/blackfin/mach-common/cpufreq.c @@ -64,7 +64,8 @@ static void __init bfin_init_tables(unsigned long cclk, unsigned long sclk) /* Anomaly 273 seems to still exist on non-BF54x w/dcache turned on */ #if ANOMALY_05000273 || ANOMALY_05000274 || \ - (!defined(CONFIG_BF54x) && defined(CONFIG_BFIN_EXTMEM_DCACHEABLE)) + (!(defined(CONFIG_BF54x) || defined(CONFIG_BF60x)) \ + && defined(CONFIG_BFIN_EXTMEM_DCACHEABLE)) min_cclk = sclk * 2; #else min_cclk = sclk; |