diff options
author | Ben Goska <goskab@onid.oregonstate.edu> | 2009-08-14 10:03:36 -0700 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-08-18 13:51:30 +0200 |
commit | 8fa656aa5289815d942ebdc26182ccb9f2b9c86f (patch) | |
tree | 8d524a1d17e8d003ffc3f6e5252a75552df372b0 /include/asm-arm/arch-omap3 | |
parent | 4af34177b657e91263919a307fd0b0865a299e52 (diff) | |
download | u-boot-imx-8fa656aa5289815d942ebdc26182ccb9f2b9c86f.zip u-boot-imx-8fa656aa5289815d942ebdc26182ccb9f2b9c86f.tar.gz u-boot-imx-8fa656aa5289815d942ebdc26182ccb9f2b9c86f.tar.bz2 |
omap3: Fixed a problem with hwecc
In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there
was a typo that offset all the ecc registers by 4 bytes, fixed that.
Signed-off-by: Ben Goska <goskab@onid.oregonstate.edu>
Acked-by: Dirk Behme <dirk.behme@googlemail.com>
Diffstat (limited to 'include/asm-arm/arch-omap3')
-rw-r--r-- | include/asm-arm/arch-omap3/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/arch-omap3/cpu.h b/include/asm-arm/arch-omap3/cpu.h index 7a032b8..8ab2e39 100644 --- a/include/asm-arm/arch-omap3/cpu.h +++ b/include/asm-arm/arch-omap3/cpu.h @@ -120,9 +120,9 @@ struct gpmc { u8 res4[0xC]; u32 config; /* 0x50 */ u32 status; /* 0x54 */ - u8 res5[0x8]; + u8 res5[0x8]; /* 0x58 */ struct gpmc_cs cs[8]; /* 0x60, 0x90, .. */ - u8 res6[0x18]; + u8 res6[0x14]; /* 0x1E0 */ u32 ecc_config; /* 0x1F4 */ u32 ecc_control; /* 0x1F8 */ u32 ecc_size_config; /* 0x1FC */ |