diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-11-16 09:22:38 -0500 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2016-11-18 07:49:16 -0500 |
commit | dd796e921ea571624fcd8685f214fdfd4406101f (patch) | |
tree | d356aac69534c9174475433c9bd8fbf8e268a7a4 | |
parent | 9d052aa01b7805e7bc4ebd9e92fb3d51808dad81 (diff) |
phy: rockchip-inno-usb2: fix uninitialized tmout variable
The newly added OTG support has an obvious uninitialized variable
access that gcc warns about:
drivers/phy/phy-rockchip-inno-usb2.c: In function 'rockchip_chg_detect_work':
drivers/phy/phy-rockchip-inno-usb2.c:717:7: error: 'tmout' may be used uninitialized in this function [-Werror=maybe-uninitialized]
This replaces the use of the uninitialized variable with what
the value was in the previous USB_CHG_STATE_WAIT_FOR_DCD
state.
Fixes: 0c42fe48fd23 ("phy: rockchip-inno-usb2: support otg-port for rk3399")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
-rw-r--r-- | drivers/phy/phy-rockchip-inno-usb2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-rockchip-inno-usb2.c b/drivers/phy/phy-rockchip-inno-usb2.c index eb89de59b68f..2f99ec95079c 100644 --- a/drivers/phy/phy-rockchip-inno-usb2.c +++ b/drivers/phy/phy-rockchip-inno-usb2.c | |||
@@ -714,7 +714,7 @@ static void rockchip_chg_detect_work(struct work_struct *work) | |||
714 | delay = CHG_SECONDARY_DET_TIME; | 714 | delay = CHG_SECONDARY_DET_TIME; |
715 | rphy->chg_state = USB_CHG_STATE_PRIMARY_DONE; | 715 | rphy->chg_state = USB_CHG_STATE_PRIMARY_DONE; |
716 | } else { | 716 | } else { |
717 | if (tmout) { | 717 | if (rphy->dcd_retries == CHG_DCD_MAX_RETRIES) { |
718 | /* floating charger found */ | 718 | /* floating charger found */ |
719 | rphy->chg_type = POWER_SUPPLY_TYPE_USB_DCP; | 719 | rphy->chg_type = POWER_SUPPLY_TYPE_USB_DCP; |
720 | rphy->chg_state = USB_CHG_STATE_DETECTED; | 720 | rphy->chg_state = USB_CHG_STATE_DETECTED; |