]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
htb: remove two unnecessary assignments
authorChangli Gao <xiaosuo@gmail.com>
Fri, 4 Jun 2010 01:33:33 +0000 (01:33 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Jun 2010 08:08:11 +0000 (01:08 -0700)
remove two unnecessary assignments

we don't need to assign NULL when initialize structure objects.

Signed-off-by: Changli Gao <xiaosuo@gmail.com>
----
 net/sched/sch_htb.c |    2 --
 1 file changed, 2 deletions(-)
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/sch_htb.c

index 0b52b8de562c40db1bd4541a08389885af621cb2..4be8d04b262d18963ac6617abaaeefc5151e16f5 100644 (file)
@@ -1550,7 +1550,6 @@ static const struct Qdisc_class_ops htb_class_ops = {
 };
 
 static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
-       .next           =       NULL,
        .cl_ops         =       &htb_class_ops,
        .id             =       "htb",
        .priv_size      =       sizeof(struct htb_sched),
@@ -1561,7 +1560,6 @@ static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
        .init           =       htb_init,
        .reset          =       htb_reset,
        .destroy        =       htb_destroy,
-       .change         =       NULL /* htb_change */,
        .dump           =       htb_dump,
        .owner          =       THIS_MODULE,
 };