There is a constant 16 MHz clock signal.

BUG=chrome-os-partner:34477
BRANCH=none
TEST=make buildall -j

Signed-off-by: Myles Watson <mylesgw@chromium.org>

Change-Id: I62bb9aeb5ee4eaee893f389628144f88042132ed
Reviewed-on: https://chromium-review.googlesource.com/234391
Reviewed-by: Randall Spangler <rspangler@chromium.org>
Commit-Queue: Myles Watson <mylesgw@chromium.org>
Tested-by: Myles Watson <mylesgw@chromium.org>
This commit is contained in:
Myles Watson
2014-12-04 16:56:09 -08:00
committed by chrome-internal-fetch
parent 221e5ca878
commit 7ec2e4158a

View File

@@ -8,3 +8,9 @@
void clock_init(void)
{
}
int clock_get_freq(void)
{
/* constant 16 MHz clock */
return 16000000;
}