diff options
author | Peter Howard | 2016-06-02 13:19:26 +1000 |
---|---|---|
committer | Tom Rini | 2016-06-06 13:39:12 -0400 |
commit | c165994299281957d735f5ec8863dda6243c3456 (patch) | |
tree | 19232755479e25f43531e5d27f767514b908a30f | |
parent | 69c125fe7b7dd057ed3e9013e6786b9f374cf8cd (diff) |
Fix to davinci_nand.h to place CEnCFG registers at correct
Signed-off-by: Peter Howard <phoward@gme.net.au>
-rw-r--r-- | arch/arm/include/asm/ti-common/davinci_nand.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/arch/arm/include/asm/ti-common/davinci_nand.h b/arch/arm/include/asm/ti-common/davinci_nand.h index 11407be1446..f343ac2c0fd 100644 --- a/arch/arm/include/asm/ti-common/davinci_nand.h +++ b/arch/arm/include/asm/ti-common/davinci_nand.h @@ -35,10 +35,12 @@ struct davinci_emif_regs { uint32_t sdrcr; union { uint32_t abncr[4]; - uint32_t ab1cr; - uint32_t ab2cr; - uint32_t ab3cr; - uint32_t ab4cr; + struct { + uint32_t ab1cr; + uint32_t ab2cr; + uint32_t ab3cr; + uint32_t ab4cr; + }; }; uint32_t sdtimr; uint32_t ddrsr; |