staging: r8188eu: silent_reset_inprogress is never read
authorMartin Kaiser <martin@kaiser.cx>
Sun, 24 Oct 2021 18:04:44 +0000 (20:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 25 Oct 2021 07:09:44 +0000 (09:09 +0200)
silent_reset_inprogress in struct sreset_priv is only written
but never read. Remove it.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20211024180448.20624-2-martin@kaiser.cx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/r8188eu/core/rtw_sreset.c
drivers/staging/r8188eu/include/rtw_sreset.h

index baa2a080a46e788b10a62c4b4afbc7ad3e277a83..60596a3a3aaddbfc2ac70dee710585d1e6bc9375 100644 (file)
@@ -9,7 +9,6 @@ void sreset_init_value(struct adapter *padapter)
        struct sreset_priv *psrtpriv = &pHalData->srestpriv;
 
        mutex_init(&psrtpriv->silentreset_mutex);
-       psrtpriv->silent_reset_inprogress = false;
        psrtpriv->wifi_error_status = WIFI_STATUS_SUCCESS;
        psrtpriv->last_tx_time = 0;
        psrtpriv->last_tx_complete_time = 0;
@@ -19,7 +18,6 @@ void sreset_reset_value(struct adapter *padapter)
        struct hal_data_8188e   *pHalData = GET_HAL_DATA(padapter);
        struct sreset_priv *psrtpriv = &pHalData->srestpriv;
 
-       psrtpriv->silent_reset_inprogress = false;
        psrtpriv->wifi_error_status = WIFI_STATUS_SUCCESS;
        psrtpriv->last_tx_time = 0;
        psrtpriv->last_tx_complete_time = 0;
index 45bc227d088ad38034cb92c53bc53441016b817f..2489f55d05941d64b9d70d81fec35c2f6a5d1b59 100644 (file)
@@ -9,7 +9,6 @@
 
 struct sreset_priv {
        struct mutex    silentreset_mutex;
-       u8      silent_reset_inprogress;
        u8      wifi_error_status;
        unsigned long last_tx_time;
        unsigned long last_tx_complete_time;