aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_htb.c
diff options
context:
space:
mode:
authorChangli Gao <xiaosuo@gmail.com>2010-06-04 01:33:33 +0000
committerDavid S. Miller <davem@davemloft.net>2010-06-07 01:08:11 -0700
commitf2a03367c072150c881fa23ce3d3f76b8236018f (patch)
tree52b98e8b034352f8afd9c6b2974f85f3b9171ed4 /net/sched/sch_htb.c
parentgreth: Remove unnecessary memset of napi member in netdev private data (diff)
downloadlinux-dev-f2a03367c072150c881fa23ce3d3f76b8236018f.tar.xz
linux-dev-f2a03367c072150c881fa23ce3d3f76b8236018f.zip
htb: remove two unnecessary assignments
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>
Diffstat (limited to 'net/sched/sch_htb.c')
-rw-r--r--net/sched/sch_htb.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c
index 0b52b8de562c..4be8d04b262d 100644
--- a/net/sched/sch_htb.c
+++ b/net/sched/sch_htb.c
@@ -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,
};