mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-26 00:01:48 +02:00
dm: blk: Update return value in blk_create_devicef()
This returns 'ret' but the value is always zero. Update it to simply return 0, for clarity. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
c16ad675d5
commit
7074b2a364
@ -596,7 +596,7 @@ int blk_create_devicef(struct udevice *parent, const char *drv_name,
|
||||
}
|
||||
device_set_name_alloced(*devp);
|
||||
|
||||
return ret;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int blk_unbind_all(int if_type)
|
||||
|
Loading…
x
Reference in New Issue
Block a user