diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2007-09-23 02:12:30 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2007-09-23 02:12:30 +0900 |
commit | b02bad128669e567fce87d8df823b06a0144b8db (patch) | |
tree | e388d06d722b283d09260ceab22f9cc342216f94 /cpu/sh4/watchdog.c | |
parent | b8685affe614ccf5f4ec66252b30e2e524d18948 (diff) | |
download | u-boot-imx-b02bad128669e567fce87d8df823b06a0144b8db.zip u-boot-imx-b02bad128669e567fce87d8df823b06a0144b8db.tar.gz u-boot-imx-b02bad128669e567fce87d8df823b06a0144b8db.tar.bz2 |
sh: Update core code of SuperH.
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'cpu/sh4/watchdog.c')
-rw-r--r-- | cpu/sh4/watchdog.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpu/sh4/watchdog.c b/cpu/sh4/watchdog.c index e2bc820..04723a7 100644 --- a/cpu/sh4/watchdog.c +++ b/cpu/sh4/watchdog.c @@ -32,11 +32,13 @@ static void cnt_write (unsigned char value){ while (csr_read() & (1 << 5)) { /* delay */ } - *((volatile unsigned short *)(WDT_BASE + 0x00)) = ((unsigned short) value) | 0x5A00; + *((volatile unsigned short *)(WDT_BASE + 0x00)) + = ((unsigned short) value) | 0x5A00; } static void csr_write (unsigned char value){ - *((volatile unsigned short *)(WDT_BASE + 0x04)) = ((unsigned short) value) | 0xA500; + *((volatile unsigned short *)(WDT_BASE + 0x04)) + = ((unsigned short) value) | 0xA500; } |