staging: ks7010: remove err_ from non-error path label
authorTobin C. Harding <me@tobin.cc>
Tue, 18 Apr 2017 00:35:38 +0000 (10:35 +1000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Apr 2017 11:47:31 +0000 (13:47 +0200)
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>
drivers/staging/ks7010/ks7010_sdio.c

index 87d5519b6ccbe485c714b7359cdb687ead0e1d1f..13d5de9306154f88d0a5e3ad43accbb9d9b52cd3 100644 (file)
@@ -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);
 }