Skip to content

Commit

Permalink
staging: rtl8723bs: Add spaces around ternary operators.
Browse files Browse the repository at this point in the history
The Linux kernel coding style calls for spaces around binary and
ternary operators.

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 fbfa035 commit 4041eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static void update_recvframe_attrib(struct adapter *padapter,
memset(pattrib, 0, sizeof(struct rx_pkt_attrib));

/* update rx report to recv_frame attribute */
pattrib->pkt_rpt_type = prxreport->c2h_ind?C2H_PACKET:NORMAL_RX;
pattrib->pkt_rpt_type = prxreport->c2h_ind ? C2H_PACKET : NORMAL_RX;
/* DBG_871X("%s: pkt_rpt_type =%d\n", __func__, pattrib->pkt_rpt_type); */

if (pattrib->pkt_rpt_type == NORMAL_RX) {
Expand Down

0 comments on commit 4041eeb

Please sign in to comment.