diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2013-12-10 07:55:31 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-10 22:44:51 -0500 |
commit | 82d567c26647aa2e54c6814cd593a32f7799e387 (patch) | |
tree | 870885a516f0d93e4350f8c440e7d0a970005d59 /net | |
parent | 1fab9abc56036256265f350c700d3d1251a47f0a (diff) |
net_sched: change "foo* bar" to "foo *bar"
"foo* bar" or "foo * bar" should be "foo *bar".
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sched/cls_u32.c | 2 | ||||
-rw-r--r-- | net/sched/sch_generic.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/net/sched/cls_u32.c b/net/sched/cls_u32.c index eb07a1e536e6..59e546c2ac98 100644 --- a/net/sched/cls_u32.c +++ b/net/sched/cls_u32.c | |||
@@ -352,7 +352,7 @@ static int u32_destroy_key(struct tcf_proto *tp, struct tc_u_knode *n) | |||
352 | return 0; | 352 | return 0; |
353 | } | 353 | } |
354 | 354 | ||
355 | static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode* key) | 355 | static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key) |
356 | { | 356 | { |
357 | struct tc_u_knode **kp; | 357 | struct tc_u_knode **kp; |
358 | struct tc_u_hnode *ht = key->ht_up; | 358 | struct tc_u_hnode *ht = key->ht_up; |
diff --git a/net/sched/sch_generic.c b/net/sched/sch_generic.c index 922a09406ba7..6a91d7d48ade 100644 --- a/net/sched/sch_generic.c +++ b/net/sched/sch_generic.c | |||
@@ -338,13 +338,13 @@ EXPORT_SYMBOL(netif_carrier_off); | |||
338 | cheaper. | 338 | cheaper. |
339 | */ | 339 | */ |
340 | 340 | ||
341 | static int noop_enqueue(struct sk_buff *skb, struct Qdisc * qdisc) | 341 | static int noop_enqueue(struct sk_buff *skb, struct Qdisc *qdisc) |
342 | { | 342 | { |
343 | kfree_skb(skb); | 343 | kfree_skb(skb); |
344 | return NET_XMIT_CN; | 344 | return NET_XMIT_CN; |
345 | } | 345 | } |
346 | 346 | ||
347 | static struct sk_buff *noop_dequeue(struct Qdisc * qdisc) | 347 | static struct sk_buff *noop_dequeue(struct Qdisc *qdisc) |
348 | { | 348 | { |
349 | return NULL; | 349 | return NULL; |
350 | } | 350 | } |