diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2012-01-07 13:22:53 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-08 09:27:20 +0000 |
commit | 28f9a9294a37ddbc1d821782afc8754eed4bce4e (patch) | |
tree | e1970d5d6ebbd4bf975108d88ba1c5addceed4b4 /arch/arm | |
parent | ca95023e7521729d3ace6fb3b9c53281c510a18c (diff) | |
download | blackbird-op-linux-28f9a9294a37ddbc1d821782afc8754eed4bce4e.tar.gz blackbird-op-linux-28f9a9294a37ddbc1d821782afc8754eed4bce4e.zip |
ARM: 7272/1: S3C24XX: Fix build error for missing <mach/system-reset.h>
Since the arch/arm/mach-s3c2410/include/mach/system-reset.h has
been removed by commit f88b8979 ("ARM: restart: remove the now
empty arch_reset()"), so the inclusion of <mach/system-reset.h>
should be removed at the plat-s3c24xx/cpu.c file.
The build error happens like following:
arch/arm/plat-s3c24xx/cpu.c:41: fatal error: mach/system-reset.h: No such file or directory
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-s3c24xx/cpu.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/plat-s3c24xx/cpu.c b/arch/arm/plat-s3c24xx/cpu.c index 1121df13e15f..21f1fda8b661 100644 --- a/arch/arm/plat-s3c24xx/cpu.c +++ b/arch/arm/plat-s3c24xx/cpu.c @@ -38,8 +38,6 @@ #include <asm/mach/arch.h> #include <asm/mach/map.h> -#include <mach/system-reset.h> - #include <mach/regs-gpio.h> #include <plat/regs-serial.h> |