mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 01:51:34 +00:00
staging:r8188eu: change rtl8188e_process_phy_info function argument type
prframe is (void *), but function used only with (struct recv_frame *). Signed-off-by: Ivan Safonov <insafonov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cb0b65556e
commit
0699715183
@ -57,10 +57,9 @@ static void process_link_qual(struct adapter *padapter,
|
||||
signal_stat->avg_val = signal_stat->total_val / signal_stat->total_num;
|
||||
}
|
||||
|
||||
void rtl8188e_process_phy_info(struct adapter *padapter, void *prframe)
|
||||
void rtl8188e_process_phy_info(struct adapter *padapter,
|
||||
struct recv_frame *precvframe)
|
||||
{
|
||||
struct recv_frame *precvframe = prframe;
|
||||
|
||||
/* Check RSSI */
|
||||
process_rssi(padapter, precvframe);
|
||||
/* Check EVM */
|
||||
|
@ -54,7 +54,8 @@ enum rx_packet_type {
|
||||
void rtl8188eu_recv_hdl(struct adapter *padapter, struct recv_buf *precvbuf);
|
||||
void rtl8188eu_recv_tasklet(void *priv);
|
||||
void rtl8188e_query_rx_phy_status(struct recv_frame *fr, struct phy_stat *phy);
|
||||
void rtl8188e_process_phy_info(struct adapter *padapter, void *prframe);
|
||||
void rtl8188e_process_phy_info(struct adapter *padapter,
|
||||
struct recv_frame *prframe);
|
||||
void update_recvframe_phyinfo_88e(struct recv_frame *fra, struct phy_stat *phy);
|
||||
void update_recvframe_attrib_88e(struct recv_frame *fra,
|
||||
struct recv_stat *stat);
|
||||
|
Loading…
Reference in New Issue
Block a user