Patch to the rtw_recv. file to fix up 2 brace warnings
(unnecessary braces) found by the checkpath.pl tool

Signed-off-by: Florian Winter <florianwinte...@gmail.com>
---
 drivers/staging/rtl8188eu/core/rtw_recv.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/rtl8188eu/core/rtw_recv.c 
b/drivers/staging/rtl8188eu/core/rtw_recv.c
index b87cbbb..8cdda2e 100644
--- a/drivers/staging/rtl8188eu/core/rtw_recv.c
+++ b/drivers/staging/rtl8188eu/core/rtw_recv.c
@@ -1149,11 +1149,10 @@ static int validate_recv_data_frame(struct adapter 
*adapter,
                break;
        }
 
-       if (ret == _FAIL) {
+       if (ret == _FAIL)
                goto exit;
-       } else if (ret == RTW_RX_HANDLED) {
+       else if (ret == RTW_RX_HANDLED)
                goto exit;
-       }
 
        if (psta == NULL) {
                RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, (" after 
to_fr_ds_chk; psta==NULL\n"));
@@ -1640,9 +1639,9 @@ static int amsdu_to_msdu(struct adapter *padapter, struct 
recv_frame *prframe)
                        if (padding_len == 4)
                                padding_len = 0;
 
-                       if (a_len < padding_len) {
+                       if (a_len < padding_len)
                                goto exit;
-                       }
+
                        pdata += padding_len;
                        a_len -= padding_len;
                }
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to