diff options
author | Weilong Chen <chenweilong@huawei.com> | 2013-12-20 11:14:59 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-27 13:06:15 -0500 |
commit | 3cdba604d0f97bc47007eee3c375b01953adadbe (patch) | |
tree | daec23a8c7b6171e159f482093b3aef94546efe0 /net/llc/llc_conn.c | |
parent | 69317a5351022e1b207131e7cccc78f261ace9ac (diff) | |
download | linux-3cdba604d0f97bc47007eee3c375b01953adadbe.tar.bz2 |
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_conn.c')
-rw-r--r-- | net/llc/llc_conn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/llc/llc_conn.c b/net/llc/llc_conn.c index cd8724177965..42dc2e45c921 100644 --- a/net/llc/llc_conn.c +++ b/net/llc/llc_conn.c @@ -753,7 +753,7 @@ void llc_sap_remove_socket(struct llc_sap *sap, struct sock *sk) * * Sends received pdus to the connection state machine. */ -static int llc_conn_rcv(struct sock* sk, struct sk_buff *skb) +static int llc_conn_rcv(struct sock *sk, struct sk_buff *skb) { struct llc_conn_state_ev *ev = llc_conn_ev(skb); @@ -891,7 +891,7 @@ out_kfree_skb: * * Initializes a socket with default llc values. */ -static void llc_sk_init(struct sock* sk) +static void llc_sk_init(struct sock *sk) { struct llc_sock *llc = llc_sk(sk); |