diff options
author | Weilong Chen <chenweilong@huawei.com> | 2013-12-20 04:14:59 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-27 19:06:15 +0100 |
commit | 3cdba604d0f97bc47007eee3c375b01953adadbe (patch) | |
tree | daec23a8c7b6171e159f482093b3aef94546efe0 /net/llc/llc_sap.c | |
parent | tile_net: Always enable PTP clock support on TILE-Gx (diff) | |
download | linux-3cdba604d0f97bc47007eee3c375b01953adadbe.tar.xz linux-3cdba604d0f97bc47007eee3c375b01953adadbe.zip |
llc: "foo* bar" should be "foo *bar"
Signed-off-by: Weilong Chen <chenweilong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/llc/llc_sap.c')
-rw-r--r-- | net/llc/llc_sap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/llc/llc_sap.c b/net/llc/llc_sap.c index e5850699098e..06033f6c845f 100644 --- a/net/llc/llc_sap.c +++ b/net/llc/llc_sap.c @@ -66,7 +66,7 @@ struct sk_buff *llc_alloc_frame(struct sock *sk, struct net_device *dev, return skb; } -void llc_save_primitive(struct sock *sk, struct sk_buff* skb, u8 prim) +void llc_save_primitive(struct sock *sk, struct sk_buff *skb, u8 prim) { struct sockaddr_llc *addr; @@ -114,7 +114,7 @@ void llc_sap_rtn_pdu(struct llc_sap *sap, struct sk_buff *skb) * failure. */ static struct llc_sap_state_trans *llc_find_sap_trans(struct llc_sap *sap, - struct sk_buff* skb) + struct sk_buff *skb) { int i = 0; struct llc_sap_state_trans *rc = NULL; |