diff options
author | Ben Dooks | 2007-07-24 14:28:01 +0200 |
---|---|---|
committer | Wim Van Sebroeck | 2007-07-24 19:08:14 +0200 |
commit | b430708ad67f9325dadd7a86e007e353ab7e5acd (patch) | |
tree | b4a467ff22e05135a7367cd4f86d7db2c517252d /drivers/char/watchdog | |
parent | [WATCHDOG] git-watchdog-typo (diff) | |
download | kernel-qcow2-linux-b430708ad67f9325dadd7a86e007e353ab7e5acd.tar.gz kernel-qcow2-linux-b430708ad67f9325dadd7a86e007e353ab7e5acd.tar.xz kernel-qcow2-linux-b430708ad67f9325dadd7a86e007e353ab7e5acd.zip |
[WATCHDOG] s3c2410_wdt: fixup after arch include moves
Fixup the s3c2410 watchdog driver after moving some
of the arch specific includes it has been relying on.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'drivers/char/watchdog')
-rw-r--r-- | drivers/char/watchdog/s3c2410_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/watchdog/s3c2410_wdt.c b/drivers/char/watchdog/s3c2410_wdt.c index 50430bced2f2..5d1c15f83d23 100644 --- a/drivers/char/watchdog/s3c2410_wdt.c +++ b/drivers/char/watchdog/s3c2410_wdt.c @@ -52,10 +52,10 @@ #include <asm/arch/map.h> -#undef S3C24XX_VA_WATCHDOG -#define S3C24XX_VA_WATCHDOG (0) +#undef S3C_VA_WATCHDOG +#define S3C_VA_WATCHDOG (0) -#include <asm/arch/regs-watchdog.h> +#include <asm/plat-s3c/regs-watchdog.h> #define PFX "s3c2410-wdt: " |