blob: 149109d4f453951f29fd3c596229046dfa9681a8 [file] [log] [blame]
Gabe Black138c2be2012-10-20 12:33:11 +00001/*
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
13unsigned long timer_get_us(void)
14{
15 printf("timer_get_us used but not implemented.\n");
16 return 0;
17}