Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fa48cf42 authored by Max Filippov's avatar Max Filippov Committed by Chris Zankel
Browse files

xtensa: change default platform clock frequency to 10MHz



Existing simulators show this level of performance.

Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
Signed-off-by: default avatarChris Zankel <chris@zankel.net>
parent 6ed65f37
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -40,8 +40,8 @@ _F(int, pcibios_fixup, (void), { return 0; });
#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
_F(void, calibrate_ccount, (void),
_F(void, calibrate_ccount, (void),
{
{
  printk ("ERROR: Cannot calibrate cpu frequency! Assuming 100MHz.\n");
	pr_err("ERROR: Cannot calibrate cpu frequency! Assuming 10MHz.\n");
  ccount_per_jiffy = 100 * (1000000UL/HZ);
	ccount_per_jiffy = 10 * (1000000UL/HZ);
});
});
#endif
#endif