OSDN Git Service

phy: qcom-qusb2: fix missing assignment of ret when calling clk_prepare_enable
authorColin Ian King <colin.king@canonical.com>
Fri, 31 May 2019 12:05:59 +0000 (13:05 +0100)
committerKishon Vijay Abraham I <kishon@ti.com>
Mon, 3 Jun 2019 11:33:52 +0000 (17:03 +0530)
commitd98010817a26eba8d4d1e8a639e0b7d7f042308a
tree866ce1a389d0fd5b6f64217258e961d6bcc907b9
parenta188339ca5a396acc588e5851ed7e19f66b0ebd9
phy: qcom-qusb2: fix missing assignment of ret when calling clk_prepare_enable

The error return from the call to clk_prepare_enable is not being assigned
to variable ret even though ret is being used to check if the call failed.
Fix this by adding in the missing assignment.

Addresses-Coverity: ("Logically dead code")
Fixes: 891a96f65ac3 ("phy: qcom-qusb2: Add support for runtime PM")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
drivers/phy/qualcomm/phy-qcom-qusb2.c