diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-10-19 09:16:18 +0200 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-10-19 09:30:32 +0200 |
commit | 082c44d20eb4c6c4aa60ae7429ea184854cb0610 (patch) | |
tree | c5efa4df65c1e0f90196f04a8760f5d3997eddbf /arch/sh/boards/renesas/rts7751r2d/led.c | |
parent | sh: Remove board-specific ide.h headers. (diff) | |
download | linux-082c44d20eb4c6c4aa60ae7429ea184854cb0610.tar.xz linux-082c44d20eb4c6c4aa60ae7429ea184854cb0610.zip |
sh: Cleanup board header directories.
Now with the ide.h mess sorted out, most of these boards
don't need their own directory. Move the headers out, and
update the driver paths.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/renesas/rts7751r2d/led.c')
-rw-r--r-- | arch/sh/boards/renesas/rts7751r2d/led.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/arch/sh/boards/renesas/rts7751r2d/led.c b/arch/sh/boards/renesas/rts7751r2d/led.c index a7ce66c1e4f0..509f548bdce0 100644 --- a/arch/sh/boards/renesas/rts7751r2d/led.c +++ b/arch/sh/boards/renesas/rts7751r2d/led.c @@ -8,13 +8,9 @@ * * This file contains Renesas Technology Sales RTS7751R2D specific LED code. */ - -#include <asm/io.h> -#include <asm/rts7751r2d/rts7751r2d.h> - -#ifdef CONFIG_HEARTBEAT - +#include <linux/io.h> #include <linux/sched.h> +#include <asm/rts7751r2d.h> /* Cycle the LED's in the clasic Knightriger/Sun pattern */ void heartbeat_rts7751r2d(void) @@ -46,10 +42,3 @@ void heartbeat_rts7751r2d(void) else bit--; } -#endif /* CONFIG_HEARTBEAT */ - -void rts7751r2d_led(unsigned short value) -{ - ctrl_outw(value, PA_OUTPORT); -} - |