Commit f2a03367 authored by Changli Gao's avatar Changli Gao Committed by David S. Miller

htb: remove two unnecessary assignments

remove two unnecessary assignments

we don't need to assign NULL when initialize structure objects.
Signed-off-by: default avatarChangli Gao <xiaosuo@gmail.com>
----
 net/sched/sch_htb.c |    2 --
 1 file changed, 2 deletions(-)
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fa6ca571
...@@ -1550,7 +1550,6 @@ static const struct Qdisc_class_ops htb_class_ops = { ...@@ -1550,7 +1550,6 @@ static const struct Qdisc_class_ops htb_class_ops = {
}; };
static struct Qdisc_ops htb_qdisc_ops __read_mostly = { static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
.next = NULL,
.cl_ops = &htb_class_ops, .cl_ops = &htb_class_ops,
.id = "htb", .id = "htb",
.priv_size = sizeof(struct htb_sched), .priv_size = sizeof(struct htb_sched),
...@@ -1561,7 +1560,6 @@ static struct Qdisc_ops htb_qdisc_ops __read_mostly = { ...@@ -1561,7 +1560,6 @@ static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
.init = htb_init, .init = htb_init,
.reset = htb_reset, .reset = htb_reset,
.destroy = htb_destroy, .destroy = htb_destroy,
.change = NULL /* htb_change */,
.dump = htb_dump, .dump = htb_dump,
.owner = THIS_MODULE, .owner = THIS_MODULE,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment