mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
f8f06bc74b
The asm-generic versions have some helper definitions that we can use instead, drop our definitions and use those instead. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
14 lines
267 B
C
14 lines
267 B
C
/*
|
|
* linux/include/asm-sh/timex.h
|
|
*
|
|
* sh architecture timex specifications
|
|
*/
|
|
#ifndef __ASM_SH_TIMEX_H
|
|
#define __ASM_SH_TIMEX_H
|
|
|
|
#define CLOCK_TICK_RATE (CONFIG_SH_PCLK_FREQ / 4) /* Underlying HZ */
|
|
|
|
#include <asm-generic/timex.h>
|
|
|
|
#endif /* __ASM_SH_TIMEX_H */
|