diff options
author | Leonid Iziumtsev <leonid.iziumtsev@se.atlascopco.com> | 2016-03-20 14:10:55 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-03-25 14:03:28 +0100 |
commit | f7440928e609734f6d24d6769927539762270e1e (patch) | |
tree | 03ad13dbf662b6193c9b69d3b7f2f471da24162c /arch/arm/include/asm/arch-mx27 | |
parent | 8fb9eea5653796fea69a45b82cacb6d378a569f0 (diff) |
mx27: 16-bit wide watchdog registers
Make the watchdog registers 16-bit wide, as they are according to TRM.
Signed-off-by: Leonid Iziumtsev <leonid.iziumtsev@se.atlascopco.com>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Diffstat (limited to 'arch/arm/include/asm/arch-mx27')
-rw-r--r-- | arch/arm/include/asm/arch-mx27/imx-regs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/include/asm/arch-mx27/imx-regs.h b/arch/arm/include/asm/arch-mx27/imx-regs.h index baf1d29cc3..40b76d26f6 100644 --- a/arch/arm/include/asm/arch-mx27/imx-regs.h +++ b/arch/arm/include/asm/arch-mx27/imx-regs.h @@ -106,9 +106,9 @@ struct esdramc_regs { /* Watchdog Registers*/ struct wdog_regs { - u32 wcr; - u32 wsr; - u32 wstr; + u16 wcr; + u16 wsr; + u16 wstr; }; /* PLL registers */ |