diff options
author | Ben Dooks <ben-linux@fluff.org> | 2005-10-12 19:58:05 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-10-12 19:58:05 +0100 |
commit | 0eea3c0b6cb356bc8e515084f831cac7e3d5131c (patch) | |
tree | 100507b40de41e2391783604e99d700771b672cd /arch | |
parent | 60ac133aac9e07b94f2cb6bf571bf8aef69248c3 (diff) | |
download | linux-stable-0eea3c0b6cb356bc8e515084f831cac7e3d5131c.tar.gz linux-stable-0eea3c0b6cb356bc8e515084f831cac7e3d5131c.tar.bz2 linux-stable-0eea3c0b6cb356bc8e515084f831cac7e3d5131c.zip |
[ARM] 2975/1: S3C2410: time.c missing include of cpu.h
Patch from Ben Dooks
arch/arm/mach-s3c2410/time.c is missing include
of cpu.h, causing the declaration of the timer
struct (s3c24xx_timer) to be flagged as missing
the declaration.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-s3c2410/time.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2410/time.c b/arch/arm/mach-s3c2410/time.c index c0acfb2ad790..8a00e3c3cd08 100644 --- a/arch/arm/mach-s3c2410/time.c +++ b/arch/arm/mach-s3c2410/time.c @@ -38,6 +38,7 @@ #include <asm/hardware/clock.h> #include "clock.h" +#include "cpu.h" static unsigned long timer_startval; static unsigned long timer_usec_ticks; |