diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2013-11-12 20:56:02 +0100 |
---|---|---|
committer | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2013-12-20 11:44:18 +0100 |
commit | a509ad0ca71cfb2419e8da15e71519b18ad585b3 (patch) | |
tree | db2e34c8b6839c50a7b0e6e69fcc8c28eb287657 /arch/arm/mach-ep93xx | |
parent | ea15811992c74cbfa42ecbfbb0fdaeb377c9fe54 (diff) | |
download | talos-obmc-linux-a509ad0ca71cfb2419e8da15e71519b18ad585b3.tar.gz talos-obmc-linux-a509ad0ca71cfb2419e8da15e71519b18ad585b3.zip |
ARM: ep93xx: stop using mach/timex.h
mach/timex.h is the last remaining header that is unused for multiarch
builds but necessary for singlearch builds. To allow to get rid of it
for singlearch builds, too, drop its usage in ep93xx arch code by
substituting CLOCK_TICK_RATE by an already defined local cpp symbol.
Acked-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-ep93xx')
-rw-r--r-- | arch/arm/mach-ep93xx/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index d95ee28a616a..94b141fcf944 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c @@ -115,7 +115,7 @@ void __init ep93xx_map_io(void) #define EP93XX_TIMER4_CLOCK 983040 #define TIMER1_RELOAD ((EP93XX_TIMER123_CLOCK / HZ) - 1) -#define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(CLOCK_TICK_RATE, HZ) +#define TIMER4_TICKS_PER_JIFFY DIV_ROUND_CLOSEST(EP93XX_TIMER4_CLOCK, HZ) static unsigned int last_jiffy_time; |