Re: [U-Boot] [PATCH] env_nand: align NAND buffers

2012-09-02 Thread Wolfgang Denk
Dear Stephen Warren, In message <1343669918-2114-1-git-send-email-swar...@wwwdotorg.org> you wrote: > From: Stephen Warren > > This allows cache flush/invalidate operations to succeed on the buffers. > > Signed-off-by: Stephen Warren > --- > common/env_nand.c | 10 +- > 1 files chan

Re: [U-Boot] [PATCH] env_nand: align NAND buffers

2012-07-31 Thread Scott Wood
On 07/31/2012 10:59 AM, Tom Warren wrote: > Scott, > >> -Original Message- >> From: Scott Wood [mailto:scottw...@freescale.com] >> Sent: Monday, July 30, 2012 4:01 PM >> To: Stephen Warren >> Cc: Tom Warren; Simon Glass; U-Boot Mailing List; Stephen Warren >> Subject: Re: [PATCH] env_nand:

Re: [U-Boot] [PATCH] env_nand: align NAND buffers

2012-07-30 Thread Scott Wood
On 07/30/2012 12:38 PM, Stephen Warren wrote: > From: Stephen Warren > > This allows cache flush/invalidate operations to succeed on the buffers. > > Signed-off-by: Stephen Warren > --- > common/env_nand.c | 10 +- > 1 files changed, 5 insertions(+), 5 deletions(-) Acked-by: Scott W

Re: [U-Boot] [PATCH] env_nand: align NAND buffers

2012-07-30 Thread Simon Glass
Hi Wolfgang, On Mon, Jul 30, 2012 at 10:10 PM, Wolfgang Denk wrote: > Dear Simon Glass, > > In message > you > wrote: >> >> > - env_t env_new; >> > + ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, sizeof(env_t)); >> >> I think this should b > > Should be ... ??? Sorry, I started a com

Re: [U-Boot] [PATCH] env_nand: align NAND buffers

2012-07-30 Thread Wolfgang Denk
Dear Simon Glass, In message you wrote: > > > - env_t env_new; > > + ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, sizeof(env_t)); > > I think this should b Should be ... ??? Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 1

Re: [U-Boot] [PATCH] env_nand: align NAND buffers

2012-07-30 Thread Simon Glass
On Mon, Jul 30, 2012 at 6:38 PM, Stephen Warren wrote: > From: Stephen Warren > > This allows cache flush/invalidate operations to succeed on the buffers. > > Signed-off-by: Stephen Warren Acked-by: Simon Glass > --- > common/env_nand.c | 10 +- > 1 files changed, 5 insertions(+),

[U-Boot] [PATCH] env_nand: align NAND buffers

2012-07-30 Thread Stephen Warren
From: Stephen Warren This allows cache flush/invalidate operations to succeed on the buffers. Signed-off-by: Stephen Warren --- common/env_nand.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/env_nand.c b/common/env_nand.c index e8daec9..e635472 10064