mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-11 05:17:10 +09:00
UPSTREAM: 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.
Change-Id: Ibeed4872e1168e135a332a0978d85a4e48083267
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>
Signed-off-by: William Wu <wulf@rock-chips.com>
(cherry picked from git.kernel.org kishon/linux-phy next
commit dd796e921e)
This commit is contained in:
committed by
Huang, Tao
parent
a17899cda8
commit
dc1f06cefa
@@ -795,7 +795,7 @@ static void rockchip_chg_detect_work(struct work_struct *work)
|
||||
delay = CHG_SECONDARY_DET_TIME;
|
||||
rphy->chg_state = USB_CHG_STATE_PRIMARY_DONE;
|
||||
} else {
|
||||
if (tmout) {
|
||||
if (rphy->dcd_retries == CHG_DCD_MAX_RETRIES) {
|
||||
/* floating charger found */
|
||||
rphy->chg_type = POWER_SUPPLY_TYPE_USB_FLOATING;
|
||||
rphy->chg_state = USB_CHG_STATE_DETECTED;
|
||||
|
||||
Reference in New Issue
Block a user