1
0
Fork 0

staging: rtl8723au: Remove unused + write-only entries from struct evt_priv

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Jes Sorensen 2014-05-09 15:03:16 +02:00 committed by Greg Kroah-Hartman
parent 593ac88e76
commit b35c0ff605
3 changed files with 0 additions and 13 deletions

View 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);

View 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_:

View 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) \