staging: rtl8712: remove redundant assignment to variable res
authorColin Ian King <colin.king@canonical.com>
Fri, 5 Jul 2019 08:25:54 +0000 (09:25 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 22 Jul 2019 05:34:10 +0000 (07:34 +0200)
The variable res is being initialized with a value that is never
read and it is being updated later with a new value. The
initialization is redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20190705082554.15588-1-colin.king@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl8712_xmit.c

index 307b0e2..dac79e6 100644 (file)
@@ -739,7 +739,7 @@ static void dump_xframe(struct _adapter *padapter,
 
 int r8712_xmit_direct(struct _adapter *padapter, struct xmit_frame *pxmitframe)
 {
-       int res = _SUCCESS;
+       int res;
 
        res = r8712_xmitframe_coalesce(padapter, pxmitframe->pkt, pxmitframe);
        pxmitframe->pkt = NULL;