staging: rtl8723au: Remove unused + write-only entries from struct evt_priv
authorJes Sorensen <Jes.Sorensen@redhat.com>
Fri, 9 May 2014 13:03:16 +0000 (15:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 15 May 2014 20:11:56 +0000 (13:11 -0700)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_cmd.c
drivers/staging/rtl8723au/core/rtw_mlme_ext.c
drivers/staging/rtl8723au/include/rtw_cmd.h

index c39adc1..272fb4f 100644 (file)
@@ -192,9 +192,6 @@ static void rtw_irq_work(struct work_struct *work);
 
 u32 rtw_init_evt_priv23a(struct evt_priv *pevtpriv)
 {
-       atomic_set(&pevtpriv->event_seq, 0);
-       pevtpriv->evt_done_cnt = 0;
-
        pevtpriv->wq = alloc_workqueue("rtl8723au_evt", 0, 1);
 
        INIT_WORK(&pevtpriv->irq_wk, rtw_irq_work);
index eb7b98e..8b39087 100644 (file)
@@ -6418,7 +6418,6 @@ u8 mlme_evt_hdl23a(struct rtw_adapter *padapter, const u8 *pbuf)
        u16 evt_sz;
        const uint *peventbuf;
        void (*event_callback)(struct rtw_adapter *dev, u8 *pbuf);
-       struct evt_priv *pevt_priv = &padapter->evtpriv;
 
        peventbuf = (uint*)pbuf;
        evt_sz = (u16)(*peventbuf&0xffff);
@@ -6439,15 +6438,11 @@ u8 mlme_evt_hdl23a(struct rtw_adapter *padapter, const u8 *pbuf)
                goto _abort_event_;
        }
 
-       atomic_inc(&pevt_priv->event_seq);
-
        peventbuf += 2;
 
        if (peventbuf) {
                event_callback = wlanevents[evt_code].event_callback;
                event_callback(padapter, (u8*)peventbuf);
-
-               pevt_priv->evt_done_cnt++;
        }
 
 _abort_event_:
index 6ab3d05..2cb9c08 100644 (file)
@@ -55,11 +55,6 @@ struct cmd_priv {
 struct evt_priv {
        struct workqueue_struct *wq;
        struct work_struct irq_wk;
-
-       atomic_t event_seq;
-       u8      *evt_buf;       /* shall be non-paged, and 4 bytes aligned */
-       u8      *evt_allocated_buf;
-       u32     evt_done_cnt;
 };
 
 #define init_h2fwcmd_w_parm_no_rsp(pcmd, pparm, code) \