diff options
Diffstat (limited to 'arch/sh/include/cpu-sh2/cpu/watchdog.h')
-rw-r--r-- | arch/sh/include/cpu-sh2/cpu/watchdog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/include/cpu-sh2/cpu/watchdog.h b/arch/sh/include/cpu-sh2/cpu/watchdog.h index 393161c9c6d0..1eab8aa63a6d 100644 --- a/arch/sh/include/cpu-sh2/cpu/watchdog.h +++ b/arch/sh/include/cpu-sh2/cpu/watchdog.h | |||
@@ -44,7 +44,7 @@ static inline __u8 sh_wdt_read_rstcsr(void) | |||
44 | /* | 44 | /* |
45 | * Same read/write brain-damage as for WTCNT here.. | 45 | * Same read/write brain-damage as for WTCNT here.. |
46 | */ | 46 | */ |
47 | return ctrl_inb(RSTCSR_R); | 47 | return __raw_readb(RSTCSR_R); |
48 | } | 48 | } |
49 | 49 | ||
50 | /** | 50 | /** |
@@ -62,7 +62,7 @@ static inline void sh_wdt_write_rstcsr(__u8 val) | |||
62 | * we can't presently touch the WOVF bit, since the upper byte | 62 | * we can't presently touch the WOVF bit, since the upper byte |
63 | * has to be swapped for this. So just leave it alone.. | 63 | * has to be swapped for this. So just leave it alone.. |
64 | */ | 64 | */ |
65 | ctrl_outw((WTCNT_HIGH << 8) | (__u16)val, RSTCSR); | 65 | __raw_writeb((WTCNT_HIGH << 8) | (__u16)val, RSTCSR); |
66 | } | 66 | } |
67 | 67 | ||
68 | #endif /* __ASM_CPU_SH2_WATCHDOG_H */ | 68 | #endif /* __ASM_CPU_SH2_WATCHDOG_H */ |