summaryrefslogtreecommitdiff
path: root/chip/nrf51/clock.c
blob: 64fd000a51fdd41eceab5b796ad6ccbe2a452235 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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;
}