Challenge suggested by coccinelle.
Compresse two lines into one line and remove unnecessary variable.
Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 static u32 GetPhyRxPktCounts(struct _adapter *pAdapter, u32 selbit)
 {
        /*selection*/
-       u32 phyrx_set = 0, count = 0;
+       u32 phyrx_set = 0;
        u32 SelectBit;
 
        SelectBit = selbit << 28;
        phyrx_set |= (SelectBit & 0xF0000000);
        r8712_write32(pAdapter, RXERR_RPT, phyrx_set);
        /*Read packet count*/
-       count = r8712_read32(pAdapter, RXERR_RPT) & RPTMaxCount;
-       return count;
+       return r8712_read32(pAdapter, RXERR_RPT) & RPTMaxCount;
 }
 
 u32 r8712_GetPhyRxPktReceived(struct _adapter *pAdapter)