blob: fe56140175d30707e87007672b37697b16b3c9dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Copyright 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;
}
|