]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/x86/cpu/timer.c
f95fce513291d96b1bb8ca1222c8971d7bdaaa19
[karo-tx-uboot.git] / arch / x86 / cpu / timer.c
1 /*
2  * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  *
6  * Alternatively, this software may be distributed under the terms of the
7  * GNU General Public License ("GPL") version 2 as published by the Free
8  * Software Foundation.
9  */
10
11 #include <common.h>
12
13 /* Temporary patch to maintain bisectability, removed in next commit */
14 #ifndef CONFIG_SYS_X86_TSC_TIMER
15 unsigned long timer_get_us(void)
16 {
17         printf("timer_get_us used but not implemented.\n");
18         return 0;
19 }
20 #endif