remoteproc: remove redundant NULL check before release_firmware()
release_firmware deals gracefully with NULL pointers, so checking first is redundant. Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
@@ -1105,8 +1105,7 @@ static void rproc_fw_config_virtio(const struct firmware *fw, void *context)
|
|||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
if (fw)
|
release_firmware(fw);
|
||||||
release_firmware(fw);
|
|
||||||
/* allow rproc_unregister() contexts, if any, to proceed */
|
/* allow rproc_unregister() contexts, if any, to proceed */
|
||||||
complete_all(&rproc->firmware_loading_complete);
|
complete_all(&rproc->firmware_loading_complete);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user