mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
ext4: Rename block group descriptor table from gd to bgd
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 <sjg@chromium.org>
This commit is contained in:
@@ -94,7 +94,7 @@ struct ext_filesystem {
|
||||
/* Superblock */
|
||||
struct ext2_sblock *sb;
|
||||
/* Block group descritpor table */
|
||||
struct ext2_block_group *gd;
|
||||
struct ext2_block_group *bgd;
|
||||
char *gdtable;
|
||||
|
||||
/* Block Bitmap Related */
|
||||
|
Reference in New Issue
Block a user