dm: Drop the block_dev_desc_t typedef
Use 'struct' instead of a typdef. Also since 'struct block_dev_desc' is long and causes 80-column violations, rename it to struct blk_desc. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
static int fat_registered;
|
||||
|
||||
#ifdef CONFIG_SPL_FAT_SUPPORT
|
||||
static int spl_register_fat_device(block_dev_desc_t *block_dev, int partition)
|
||||
static int spl_register_fat_device(struct blk_desc *block_dev, int partition)
|
||||
{
|
||||
int err = 0;
|
||||
|
||||
@@ -39,7 +39,7 @@ static int spl_register_fat_device(block_dev_desc_t *block_dev, int partition)
|
||||
return err;
|
||||
}
|
||||
|
||||
int spl_load_image_fat(block_dev_desc_t *block_dev,
|
||||
int spl_load_image_fat(struct blk_desc *block_dev,
|
||||
int partition,
|
||||
const char *filename)
|
||||
{
|
||||
@@ -72,7 +72,7 @@ end:
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SPL_OS_BOOT
|
||||
int spl_load_image_fat_os(block_dev_desc_t *block_dev, int partition)
|
||||
int spl_load_image_fat_os(struct blk_desc *block_dev, int partition)
|
||||
{
|
||||
int err;
|
||||
__maybe_unused char *file;
|
||||
@@ -121,7 +121,7 @@ defaults:
|
||||
CONFIG_SPL_FS_LOAD_KERNEL_NAME);
|
||||
}
|
||||
#else
|
||||
int spl_load_image_fat_os(block_dev_desc_t *block_dev, int partition)
|
||||
int spl_load_image_fat_os(struct blk_desc *block_dev, int partition)
|
||||
{
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user