diff options
author | Tetsuyuki Kobayashi <koba@kmckk.co.jp> | 2012-07-19 23:27:56 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-10-03 02:04:23 +0200 |
commit | 2c1157df46031c798654dc31ef7f982e4e5295e8 (patch) | |
tree | 747ee3b1dfe249665c83afed905c858e87da6f1b /arch/arm/include | |
parent | c7ee8a508b5710b8c2af6db13f2401afee56c588 (diff) | |
download | u-boot-imx-2c1157df46031c798654dc31ef7f982e4e5295e8.zip u-boot-imx-2c1157df46031c798654dc31ef7f982e4e5295e8.tar.gz u-boot-imx-2c1157df46031c798654dc31ef7f982e4e5295e8.tar.bz2 |
arm: rmobile: kzm9g: Add dummy member to struct sh73a0_rwdt
Add dummy member to struct sh73a0_rwdt in sh73a0.h.
Without this, initializing watch dog timer goes wrong.
Signed-off-by: Tetsuyuki Kobayashi <koba@kmckk.co.jp>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/arch-rmobile/sh73a0.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-rmobile/sh73a0.h b/arch/arm/include/asm/arch-rmobile/sh73a0.h index c0bfb9d..bdbb408 100644 --- a/arch/arm/include/asm/arch-rmobile/sh73a0.h +++ b/arch/arm/include/asm/arch-rmobile/sh73a0.h @@ -63,7 +63,9 @@ /* RWDT */ struct sh73a0_rwdt { u16 rwtcnt0; /* 0x00 */ + u16 dummy0; /* 0x02 */ u16 rwtcsra0; /* 0x04 */ + u16 dummy1; /* 0x06 */ u16 rwtcsrb0; /* 0x08 */ }; |