Re: [U-Boot] [PATCH v2] ext4: Rename block group descriptor table from gd to bgd

2012-10-03 Thread Tom Rini
On Wed, Oct 03, 2012 at 02:37:49PM -0700, Simon Glass wrote: > On x86 machines gd is unfortunately a #define, so we should avoid using > gd for anything. This patch changes uses of gd to bgd so that ext4fs > can be used on x86. > > A better fix would be to remove the #define in x86, but I'm not s

[U-Boot] [PATCH v2] ext4: Rename block group descriptor table from gd to bgd

2012-10-03 Thread Simon Glass
On x86 machines gd is unfortunately a #define, so we should avoid using gd for anything. This patch changes uses of gd to bgd so that ext4fs can be used on x86. A better fix would be to remove the #define in x86, but I'm not sure how to do that. Signed-off-by: Simon Glass --- Changes in v2: - Do