diff options
author | Gaurav Singh <gaurav1086@gmail.com> | 2020-06-21 22:24:30 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-22 20:55:09 -0700 |
commit | c5efcf17bf84b20dd76ca56de6dd99a40a89c4e3 (patch) | |
tree | 4e3963efa8028cbf5b2d6269958c0097d4cb877d /net/sched | |
parent | 75674e31593ba3b18459816d9b52b3d87dbfadc0 (diff) | |
download | linux-c5efcf17bf84b20dd76ca56de6dd99a40a89c4e3.tar.gz linux-c5efcf17bf84b20dd76ca56de6dd99a40a89c4e3.tar.bz2 linux-c5efcf17bf84b20dd76ca56de6dd99a40a89c4e3.zip |
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>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/cls_tcindex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/cls_tcindex.c b/net/sched/cls_tcindex.c index 61e95029c18f..78bec347b8b6 100644 --- a/net/sched/cls_tcindex.c +++ b/net/sched/cls_tcindex.c @@ -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; |