mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 10:31:02 +00:00
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>
17 lines
324 B
C
17 lines
324 B
C
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Clocks and power management settings */
|
|
|
|
void clock_init(void)
|
|
{
|
|
}
|
|
|
|
int clock_get_freq(void)
|
|
{
|
|
/* constant 16 MHz clock */
|
|
return 16000000;
|
|
}
|