mirror of https://gitee.com/openkylin/linux.git
staging: unisys: visorbus: check for err from dev_set_name
The function dev_set_name can return an error, don't just ignore it. Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Reviewed-by: Tim Sell <timothy.sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f894c88a24
commit
e0d210ae5f
|
@ -642,8 +642,10 @@ create_visor_device(struct visor_device *dev)
|
|||
* (NOT bus instance). That's why we need to include the bus
|
||||
* number within the name.
|
||||
*/
|
||||
dev_set_name(&dev->device, "vbus%u:dev%u",
|
||||
chipset_bus_no, chipset_dev_no);
|
||||
err = dev_set_name(&dev->device, "vbus%u:dev%u",
|
||||
chipset_bus_no, chipset_dev_no);
|
||||
if (err)
|
||||
goto err_put;
|
||||
|
||||
/*
|
||||
* device_add does this:
|
||||
|
|
Loading…
Reference in New Issue