]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
caif: remove duplicate initialization
authorDan Carpenter <dan.carpenter@oracle.com>
Mon, 6 Feb 2012 21:20:15 +0000 (21:20 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 7 Feb 2012 18:39:37 +0000 (13:39 -0500)
"priv" is initialized twice.  I kept the second one, because it is next
to the check for NULL.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/caif/chnl_net.c

index a751d9b263edb10b665f744050510bb5bb01a2e1..e866234d0e5aeddae2ee6a3ce7507ca7459540ed 100644 (file)
@@ -72,13 +72,12 @@ static void robust_list_del(struct list_head *delete_node)
 static int chnl_recv_cb(struct cflayer *layr, struct cfpkt *pkt)
 {
        struct sk_buff *skb;
-       struct chnl_net *priv  = container_of(layr, struct chnl_net, chnl);
+       struct chnl_net *priv;
        int pktlen;
        const u8 *ip_version;
        u8 buf;
 
        priv = container_of(layr, struct chnl_net, chnl);
-
        if (!priv)
                return -EINVAL;