Commit ce202cbb authored by Thomas Bogendoerfer's avatar Thomas Bogendoerfer Committed by Ralf Baechle

[MIPS] Assume R4000/R4400 newer than 3.0 don't have the mfc0 count bug

This seems as reasonable assumption and gets some SNI machines to work
which currently must rely on the cp0 counter as clocksource.
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent c990081b
...@@ -147,9 +147,9 @@ static __init int cpu_has_mfc0_count_bug(void) ...@@ -147,9 +147,9 @@ static __init int cpu_has_mfc0_count_bug(void)
return 1; return 1;
/* /*
* I don't have erratas for newer R4400 so be paranoid. * we assume newer revisions are ok
*/ */
return 1; return 0;
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment