diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-01-05 16:36:18 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2007-01-05 23:55:21 -0800 |
commit | 34f1ca540679f61a02b7406f036d9edde9717ee2 (patch) | |
tree | 1d08657f77c4060e34736a934a25a58267d2113b /drivers/leds | |
parent | 6002f544c9f724a9e35cbd5799742fd98e3d6046 (diff) | |
download | linux-3.10-34f1ca540679f61a02b7406f036d9edde9717ee2.tar.gz linux-3.10-34f1ca540679f61a02b7406f036d9edde9717ee2.tar.bz2 linux-3.10-34f1ca540679f61a02b7406f036d9edde9717ee2.zip |
[PATCH] Fix leds-s3c24xx hardware.h reference
Russell King recently reminded us that one shouldn't use
asm/arch/hardware.h but one should use asm/hardware.h
(http://lkml.org/lkml/2006/12/23/26). Unfortunately, the leds-s3c24xx
driver is using the wrong header. This patch is fixing that.
Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Acked-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | drivers/leds/leds-s3c24xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-s3c24xx.c b/drivers/leds/leds-s3c24xx.c index fb1edc1c9ed..50914439d86 100644 --- a/drivers/leds/leds-s3c24xx.c +++ b/drivers/leds/leds-s3c24xx.c @@ -16,7 +16,7 @@ #include <linux/platform_device.h> #include <linux/leds.h> -#include <asm/arch/hardware.h> +#include <asm/hardware.h> #include <asm/arch/regs-gpio.h> #include <asm/arch/leds-gpio.h> |