2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2008-08-02 11:55:55 +02:00
|
|
|
* arch/arm/include/asm/timex.h
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 1997,1998 Russell King
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Architecture Specific TIME specifications
|
|
|
|
*/
|
|
|
|
#ifndef _ASMARM_TIMEX_H
|
|
|
|
#define _ASMARM_TIMEX_H
|
|
|
|
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/timex.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
typedef unsigned long cycles_t;
|
|
|
|
|
|
|
|
static inline cycles_t get_cycles (void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|