staging: ks7010: Remove initialisation in ks_hostif.c
authorNishka Dasgupta <nishkadg.linux@gmail.com>
Fri, 24 May 2019 08:03:30 +0000 (13:33 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 May 2019 21:09:46 +0000 (14:09 -0700)
The initial value of return variable result is never used, so it can be
removed.
Issue found with Coccinelle.

Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks_hostif.c

index e089366..3775fd4 100644 (file)
@@ -1067,7 +1067,7 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *skb)
        unsigned int length = 0;
        struct hostif_data_request *pp;
        unsigned char *p;
-       int result = 0;
+       int result;
        unsigned short eth_proto;
        struct ether_hdr *eth_hdr;
        unsigned short keyinfo = 0;