staging: rtl8723bs: rtw_efuse: Compress lines for immediate return
authorSimran Singhal <singhalsimran0@gmail.com>
Wed, 25 Mar 2020 20:54:18 +0000 (02:24 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Mar 2020 07:37:38 +0000 (08:37 +0100)
Compress two lines into a single line if immediate return statement is found.

It is done using script Coccinelle. And coccinelle uses following semantic
patch for this compression function:

@@
expression ret;
identifier f;
@@

-ret =
+return
     f(...);
-return ret;

Signed-off-by: Simran Singhal <singhalsimran0@gmail.com>
Link: https://lore.kernel.org/r/20200325205418.GA29149@simran-Inspiron-5558
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_efuse.c

index de7d15f..8794638 100644 (file)
@@ -266,8 +266,7 @@ bool                bPseudoTest)
        /* DBG_871X("===> EFUSE_OneByteRead() start, 0x34 = 0x%X\n", rtw_read32(padapter, EFUSE_TEST)); */
 
        if (bPseudoTest) {
-               bResult = Efuse_Read1ByteFromFakeContent(padapter, addr, data);
-               return bResult;
+               return Efuse_Read1ByteFromFakeContent(padapter, addr, data);
        }
 
        /*  <20130121, Kordan> For SMIC EFUSE specificatoin. */
@@ -319,8 +318,7 @@ bool                bPseudoTest)
        /* DBG_871X("===> EFUSE_OneByteWrite() start, 0x34 = 0x%X\n", rtw_read32(padapter, EFUSE_TEST)); */
 
        if (bPseudoTest) {
-               bResult = Efuse_Write1ByteToFakeContent(padapter, addr, data);
-               return bResult;
+               return Efuse_Write1ByteToFakeContent(padapter, addr, data);
        }