Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 001586a7 authored by Anish Bhatt's avatar Anish Bhatt Committed by David S. Miller
Browse files

cxgb4i : Fix -Wmaybe-uninitialized warning.



Identified by kbuild test robot. csk family is always set to be AF_INET or
AF_INET6, so skb will always be initialized to some value but there is no harm
in silencing the warning anyways.

Signed-off-by: default avatarAnish Bhatt <anish@chelsio.com>
Fixes : f42bb57c ('cxgb4i : Fix -Wunused-function warning')
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 04ffcb25
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -758,7 +758,7 @@ static int act_open_rpl_status_to_errno(int status)


static void csk_act_open_retry_timer(unsigned long data)
static void csk_act_open_retry_timer(unsigned long data)
{
{
	struct sk_buff *skb;
	struct sk_buff *skb = NULL;
	struct cxgbi_sock *csk = (struct cxgbi_sock *)data;
	struct cxgbi_sock *csk = (struct cxgbi_sock *)data;
	struct cxgb4_lld_info *lldi = cxgbi_cdev_priv(csk->cdev);
	struct cxgb4_lld_info *lldi = cxgbi_cdev_priv(csk->cdev);
	void (*send_act_open_func)(struct cxgbi_sock *, struct sk_buff *,
	void (*send_act_open_func)(struct cxgbi_sock *, struct sk_buff *,