Skip to content

Commit

Permalink
staging: rtl8723bs: Fix lines with trailing open parentheses.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Quytelda Kahja authored and Greg Kroah-Hartman committed Mar 29, 2018
1 parent 7d0b4f3 commit fbfa035
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ static s32 initrecvbuf(struct recv_buf *precvbuf, struct adapter *padapter)
return _SUCCESS;
}

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

0 comments on commit fbfa035

Please sign in to comment.