net_sched: change "foo* bar" to "foo *bar"
authorYang Yingliang <yangyingliang@huawei.com>
Tue, 10 Dec 2013 12:55:31 +0000 (20:55 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Dec 2013 03:44:51 +0000 (22:44 -0500)
"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>
net/sched/cls_u32.c
net/sched/sch_generic.c

index eb07a1e536e6cb6f0b1f44099f130119490e9f52..59e546c2ac98e512d7c94a25c9613868d02a8b79 100644 (file)
@@ -352,7 +352,7 @@ static int u32_destroy_key(struct tcf_proto *tp, struct tc_u_knode *n)
        return 0;
 }
 
-static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knodekey)
+static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key)
 {
        struct tc_u_knode **kp;
        struct tc_u_hnode *ht = key->ht_up;
index 922a09406ba70573499877ac3e561c9ee7b61a5c..6a91d7d48ade4818b09bc53901c90a009ddd508c 100644 (file)
@@ -338,13 +338,13 @@ EXPORT_SYMBOL(netif_carrier_off);
    cheaper.
  */
 
-static int noop_enqueue(struct sk_buff *skb, struct Qdisc * qdisc)
+static int noop_enqueue(struct sk_buff *skb, struct Qdisc *qdisc)
 {
        kfree_skb(skb);
        return NET_XMIT_CN;
 }
 
-static struct sk_buff *noop_dequeue(struct Qdisc * qdisc)
+static struct sk_buff *noop_dequeue(struct Qdisc *qdisc)
 {
        return NULL;
 }