diff options
author | Alexander Aring <aring@mojatatu.com> | 2017-12-20 12:35:11 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-21 12:32:49 -0500 |
commit | ac8ef4ab731fae8617a41960917ceda475d5a2df (patch) | |
tree | 0b032942df5b9bdf42c10cbb45494db30c5cd957 /net/sched/sch_tbf.c | |
parent | 8f36e00065436412a02d1f50ad77375bdb506300 (diff) | |
download | blackbird-op-linux-ac8ef4ab731fae8617a41960917ceda475d5a2df.tar.gz blackbird-op-linux-ac8ef4ab731fae8617a41960917ceda475d5a2df.zip |
net: sched: fix coding style issues
This patch fix checkpatch issues for upcomming patches according to the
sched api file. It changes mostly how to check on null pointer.
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Alexander Aring <aring@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_tbf.c')
-rw-r--r-- | net/sched/sch_tbf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_tbf.c b/net/sched/sch_tbf.c index 120f4f365967..e8f3345674c5 100644 --- a/net/sched/sch_tbf.c +++ b/net/sched/sch_tbf.c @@ -428,7 +428,7 @@ static int tbf_init(struct Qdisc *sch, struct nlattr *opt) qdisc_watchdog_init(&q->watchdog, sch); q->qdisc = &noop_qdisc; - if (opt == NULL) + if (!opt) return -EINVAL; q->t_c = ktime_get_ns(); |