staging: rtl8723bs: Fix lines with trailing open parentheses.

Realign the arguments for update_recvframe_attrib() and
update_recvframe_phyinfo() so there is no trailing open parenthesis.

Signed-off-by: Quytelda Kahja <quytelda@tamalin.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Quytelda Kahja 2018-03-27 01:41:04 -07:00 committed by Greg Kroah-Hartman
parent 7d0b4f3c93
commit fbfa0358a2
1 changed files with 5 additions and 6 deletions

View File

@ -29,9 +29,9 @@ static s32 initrecvbuf(struct recv_buf *precvbuf, struct adapter *padapter)
return _SUCCESS; return _SUCCESS;
} }
static void update_recvframe_attrib( static void update_recvframe_attrib(struct adapter *padapter,
struct adapter *padapter, union recv_frame *precvframe, struct recv_stat *prxstat union recv_frame *precvframe,
) struct recv_stat *prxstat)
{ {
struct rx_pkt_attrib *pattrib; struct rx_pkt_attrib *pattrib;
struct recv_stat report; struct recv_stat report;
@ -84,9 +84,8 @@ static void update_recvframe_attrib(
*Before calling this function, *Before calling this function,
*precvframe->u.hdr.rx_data should be ready! *precvframe->u.hdr.rx_data should be ready!
*/ */
static void update_recvframe_phyinfo( static void update_recvframe_phyinfo(union recv_frame *precvframe,
union recv_frame *precvframe, struct phy_stat *pphy_status struct phy_stat *pphy_status)
)
{ {
struct adapter *padapter = precvframe->u.hdr.adapter; struct adapter *padapter = precvframe->u.hdr.adapter;
struct rx_pkt_attrib *pattrib = &precvframe->u.hdr.attrib; struct rx_pkt_attrib *pattrib = &precvframe->u.hdr.attrib;