Re: [U-Boot] [PATCH v2] ext2fs: fix warning: 'blocknxt' may be used uninitialized

2012-07-23 Thread Thierry Reding
On Mon, Jul 23, 2012 at 11:56:00AM -0700, Tom Rini wrote: > On Sun, Jul 08, 2012 at 10:55:16PM +0200, Wolfgang Denk wrote: > > Dear Kim Phillips, > > > > In message <20120703174156.a1082309c2b205216606a...@freescale.com> you > > wrote: > > > This warning was introduced in 436da3c "ext2load: incre

Re: [U-Boot] [PATCH v2] ext2fs: fix warning: 'blocknxt' may be used uninitialized

2012-07-23 Thread Tom Rini
On Sun, Jul 08, 2012 at 10:55:16PM +0200, Wolfgang Denk wrote: > Dear Kim Phillips, > > In message <20120703174156.a1082309c2b205216606a...@freescale.com> you wrote: > > This warning was introduced in 436da3c "ext2load: increase read > > speed": > > > > ext2fs.c: In function 'ext2fs_read_file': >

Re: [U-Boot] [PATCH v2] ext2fs: fix warning: 'blocknxt' may be used uninitialized

2012-07-08 Thread Wolfgang Denk
Dear Kim Phillips, In message <20120703174156.a1082309c2b205216606a...@freescale.com> you wrote: > This warning was introduced in 436da3c "ext2load: increase read > speed": > > ext2fs.c: In function 'ext2fs_read_file': > ext2fs.c:458:19: warning: 'blocknxt' may be used uninitialized in this func=

Re: [U-Boot] [PATCH v2] ext2fs: fix warning: 'blocknxt' may be used uninitialized

2012-07-06 Thread Jason Cooper
On Tue, Jul 03, 2012 at 05:41:56PM -0500, Kim Phillips wrote: > This warning was introduced in 436da3c "ext2load: increase read > speed": > > ext2fs.c: In function 'ext2fs_read_file': > ext2fs.c:458:19: warning: 'blocknxt' may be used uninitialized in this > function [-Wuninitialized] > > this c

Re: [U-Boot] [PATCH v2] ext2fs: fix warning: 'blocknxt' may be used uninitialized

2012-07-03 Thread Thierry Reding
On Tue, Jul 03, 2012 at 05:41:56PM -0500, Kim Phillips wrote: > This warning was introduced in 436da3c "ext2load: increase read > speed": > > ext2fs.c: In function 'ext2fs_read_file': > ext2fs.c:458:19: warning: 'blocknxt' may be used uninitialized in this > function [-Wuninitialized] > > this c

[U-Boot] [PATCH v2] ext2fs: fix warning: 'blocknxt' may be used uninitialized

2012-07-03 Thread Kim Phillips
This warning was introduced in 436da3c "ext2load: increase read speed": ext2fs.c: In function 'ext2fs_read_file': ext2fs.c:458:19: warning: 'blocknxt' may be used uninitialized in this function [-Wuninitialized] this change makes it go away. Cc: Eric Nelson Cc: Thierry Reding Cc: Jason Cooper