mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-08 14:23:19 +00:00
tcindex_change: Remove redundant null check
arg cannot be NULL since its already being dereferenced before. Remove the redundant NULL check. Signed-off-by: Gaurav Singh <gaurav1086@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
75674e3159
commit
c5efcf17bf
@ -533,7 +533,7 @@ tcindex_change(struct net *net, struct sk_buff *in_skb,
|
||||
|
||||
pr_debug("tcindex_change(tp %p,handle 0x%08x,tca %p,arg %p),opt %p,"
|
||||
"p %p,r %p,*arg %p\n",
|
||||
tp, handle, tca, arg, opt, p, r, arg ? *arg : NULL);
|
||||
tp, handle, tca, arg, opt, p, r, *arg);
|
||||
|
||||
if (!opt)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user