* [U-Boot] [PATCH] omap3: Fixed a problem with hwecc
@ 2009-08-14 15:12 Ben Goska
0 siblings, 0 replies; 4+ messages in thread
From: Ben Goska @ 2009-08-14 15:12 UTC (permalink / raw)
To: u-boot
In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there was a typo that offset all the ecc registers by 4 bytes, fixed that.
Signed-off-by Dirk Behme
---
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 */
--
1.6.3.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] omap3: Fixed a problem with hwecc
@ 2009-08-14 17:03 Ben Goska
2009-08-14 17:05 ` Dirk Behme
2009-08-17 22:02 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 2 replies; 4+ messages in thread
From: Ben Goska @ 2009-08-14 17:03 UTC (permalink / raw)
To: u-boot
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>
---
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 */
--
1.6.3.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] omap3: Fixed a problem with hwecc
2009-08-14 17:03 [U-Boot] [PATCH] omap3: Fixed a problem with hwecc Ben Goska
@ 2009-08-14 17:05 ` Dirk Behme
2009-08-17 22:02 ` Jean-Christophe PLAGNIOL-VILLARD
1 sibling, 0 replies; 4+ messages in thread
From: Dirk Behme @ 2009-08-14 17:05 UTC (permalink / raw)
To: u-boot
Ben Goska wrote:
> 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>
Should be applied as bugfix to -rc.
Thanks
Dirk
> ---
> 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 */
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] omap3: Fixed a problem with hwecc
2009-08-14 17:03 [U-Boot] [PATCH] omap3: Fixed a problem with hwecc Ben Goska
2009-08-14 17:05 ` Dirk Behme
@ 2009-08-17 22:02 ` Jean-Christophe PLAGNIOL-VILLARD
1 sibling, 0 replies; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2009-08-17 22:02 UTC (permalink / raw)
To: u-boot
On 10:03 Fri 14 Aug , Ben Goska wrote:
> 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>
> ---
> include/asm-arm/arch-omap3/cpu.h | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
apply to u-boot-arm
Best Regards,
J.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-08-17 22:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-14 17:03 [U-Boot] [PATCH] omap3: Fixed a problem with hwecc Ben Goska
2009-08-14 17:05 ` Dirk Behme
2009-08-17 22:02 ` Jean-Christophe PLAGNIOL-VILLARD
-- strict thread matches above, loose matches on Subject: below --
2009-08-14 15:12 Ben Goska
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox