mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
blk: Drop unnecessary #ifdef in in blk_legacy
We can rely on the compiler to eliminate any dead code. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -70,7 +70,6 @@ static int get_desc(struct blk_driver *drv, int devnum, struct blk_desc **descp)
|
|||||||
return drv->get_dev(devnum, descp);
|
return drv->get_dev(devnum, descp);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_HAVE_BLOCK_DEVICE
|
|
||||||
int blk_list_part(enum if_type if_type)
|
int blk_list_part(enum if_type if_type)
|
||||||
{
|
{
|
||||||
struct blk_driver *drv;
|
struct blk_driver *drv;
|
||||||
@@ -174,7 +173,6 @@ int blk_show_device(enum if_type if_type, int devnum)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_HAVE_BLOCK_DEVICE */
|
|
||||||
|
|
||||||
struct blk_desc *blk_get_devnum_by_type(enum if_type if_type, int devnum)
|
struct blk_desc *blk_get_devnum_by_type(enum if_type if_type, int devnum)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user