mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-07 11:36:40 +07:00
staging: ks7010: remove err_ from non-error path label
goto label includes 'err_' suffix but is executed on non-error paths. Remove err_ suffix from goto label. Signed-off-by: Tobin C. Harding <me@tobin.cc> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e61e73d71b
commit
0dd30a74b9
@ -474,18 +474,18 @@ static void ks7010_rw_function(struct work_struct *work)
|
||||
ks_wlan_hw_wakeup_request(priv);
|
||||
queue_delayed_work(priv->wq, &priv->rw_dwork, 1);
|
||||
}
|
||||
goto err_release_host;
|
||||
goto release_host;
|
||||
}
|
||||
|
||||
/* sleep mode doze */
|
||||
if (atomic_read(&priv->sleepstatus.doze_request) == 1) {
|
||||
ks_wlan_hw_sleep_doze_request(priv);
|
||||
goto err_release_host;
|
||||
goto release_host;
|
||||
}
|
||||
/* sleep mode wakeup */
|
||||
if (atomic_read(&priv->sleepstatus.wakeup_request) == 1) {
|
||||
ks_wlan_hw_sleep_wakeup_request(priv);
|
||||
goto err_release_host;
|
||||
goto release_host;
|
||||
}
|
||||
|
||||
/* read (WriteStatus/ReadDataSize FN1:00_0014) */
|
||||
@ -493,7 +493,7 @@ static void ks7010_rw_function(struct work_struct *work)
|
||||
if (ret) {
|
||||
DPRINTK(1, " error : WSTATUS_RSIZE=%02X psstatus=%d\n", rw_data,
|
||||
atomic_read(&priv->psstatus.status));
|
||||
goto err_release_host;
|
||||
goto release_host;
|
||||
}
|
||||
DPRINTK(4, "WSTATUS_RSIZE=%02X\n", rw_data);
|
||||
|
||||
@ -505,7 +505,7 @@ static void ks7010_rw_function(struct work_struct *work)
|
||||
|
||||
_ks_wlan_hw_power_save(priv);
|
||||
|
||||
err_release_host:
|
||||
release_host:
|
||||
sdio_release_host(priv->ks_sdio_card->func);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user