Commit 00cf86c9 authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723au: Call c2h_handler_8723a() directly instead of via HAL interface

parent 227ca8c4
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1307,10 +1307,10 @@ static int c2h_evt_hdl(struct rtw_adapter *adapter, struct c2h_evt_hdr *c2h_evt)
		if (c2h_evt_read23a(adapter, buf) == _SUCCESS) {
			c2h_evt = (struct c2h_evt_hdr *)buf;

			ret = rtw_hal_c2h_handler23a(adapter, c2h_evt);
			ret = c2h_handler_8723a(adapter, c2h_evt);
		}
	} else
		ret = rtw_hal_c2h_handler23a(adapter, c2h_evt);
		ret = c2h_handler_8723a(adapter, c2h_evt);

	return ret;
}
@@ -1343,7 +1343,7 @@ void rtw_evt_work(struct work_struct *work)

	if (c2h_id_filter_ccx_8723a(ework->u.c2h_evt.id) == true) {
		/* Handle CCX report here */
		rtw_hal_c2h_handler23a(adapter, &ework->u.c2h_evt);
		c2h_handler_8723a(adapter, &ework->u.c2h_evt);
		kfree(ework);
	} else {
		/*
+0 −8
Original line number Diff line number Diff line
@@ -360,11 +360,3 @@ void rtw_hal_reset_security_engine23a(struct rtw_adapter *adapter)
	if (adapter->HalFunc.hal_reset_security_engine)
		adapter->HalFunc.hal_reset_security_engine(adapter);
}

s32 rtw_hal_c2h_handler23a(struct rtw_adapter *adapter, struct c2h_evt_hdr *c2h_evt)
{
	s32 ret = _FAIL;
	if (adapter->HalFunc.c2h_handler)
		ret = adapter->HalFunc.c2h_handler(adapter, c2h_evt);
	return ret;
}
+1 −4
Original line number Diff line number Diff line
@@ -1661,8 +1661,7 @@ s32 c2h_id_filter_ccx_8723a(u8 id)
	return ret;
}

static s32 c2h_handler_8723a(struct rtw_adapter *padapter,
			     struct c2h_evt_hdr *c2h_evt)
s32 c2h_handler_8723a(struct rtw_adapter *padapter, struct c2h_evt_hdr *c2h_evt)
{
	s32 ret = _SUCCESS;
	u8 i = 0;
@@ -1764,8 +1763,6 @@ void rtl8723a_set_hal_ops(struct hal_ops *pHalFunc)
	pHalFunc->SetHalODMVarHandler = &rtl8723a_SetHalODMVar;

	pHalFunc->hal_notch_filter = &hal_notch_filter_8723a;

	pHalFunc->c2h_handler = c2h_handler_8723a;
}

void rtl8723a_InitAntenna_Selection(struct rtw_adapter *padapter)
+0 −2
Original line number Diff line number Diff line
@@ -158,7 +158,6 @@ struct hal_ops {

	void (*hal_notch_filter)(struct rtw_adapter *adapter, bool enable);
	void (*hal_reset_security_engine)(struct rtw_adapter *adapter);
	s32 (*c2h_handler)(struct rtw_adapter *padapter, struct c2h_evt_hdr *c2h_evt);
};

enum rt_eeprom_type {
@@ -280,7 +279,6 @@ bool rtw_hal_sreset_inprogress(struct rtw_adapter *padapter);
void rtw_hal_notch_filter23a(struct rtw_adapter *adapter, bool enable);
void rtw_hal_reset_security_engine23a(struct rtw_adapter *adapter);

s32 rtw_hal_c2h_handler23a(struct rtw_adapter *adapter, struct c2h_evt_hdr *c2h_evt);
void hw_var_set_correct_tsf(struct rtw_adapter *padapter);
void hw_var_set_mlme_disconnect(struct rtw_adapter *padapter);
void hw_var_set_opmode(struct rtw_adapter *padapter, u8 mode);
+1 −0
Original line number Diff line number Diff line
@@ -545,5 +545,6 @@ void rtl8723a_start_thread(struct rtw_adapter *padapter);
void rtl8723a_stop_thread(struct rtw_adapter *padapter);

s32 c2h_id_filter_ccx_8723a(u8 id);
s32 c2h_handler_8723a(struct rtw_adapter *padapter, struct c2h_evt_hdr *c2h_evt);

#endif