aboutsummaryrefslogtreecommitdiffstats
path: root/net/llc
diff options
context:
space:
mode:
authorWeilong Chen <chenweilong@huawei.com>2013-12-19 22:14:59 -0500
committerDavid S. Miller <davem@davemloft.net>2013-12-27 13:06:15 -0500
commit3cdba604d0f97bc47007eee3c375b01953adadbe (patch)
treedaec23a8c7b6171e159f482093b3aef94546efe0 /net/llc
parent69317a5351022e1b207131e7cccc78f261ace9ac (diff)
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')
-rw-r--r--net/llc/llc_conn.c4
-rw-r--r--net/llc/llc_core.c2
-rw-r--r--net/llc/llc_sap.c4
3 files changed, 5 insertions, 5 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)
753 * 753 *
754 * Sends received pdus to the connection state machine. 754 * Sends received pdus to the connection state machine.
755 */ 755 */
756static int llc_conn_rcv(struct sock* sk, struct sk_buff *skb) 756static int llc_conn_rcv(struct sock *sk, struct sk_buff *skb)
757{ 757{
758 struct llc_conn_state_ev *ev = llc_conn_ev(skb); 758 struct llc_conn_state_ev *ev = llc_conn_ev(skb);
759 759
@@ -891,7 +891,7 @@ out_kfree_skb:
891 * 891 *
892 * Initializes a socket with default llc values. 892 * Initializes a socket with default llc values.
893 */ 893 */
894static void llc_sk_init(struct sock* sk) 894static void llc_sk_init(struct sock *sk)
895{ 895{
896 struct llc_sock *llc = llc_sk(sk); 896 struct llc_sock *llc = llc_sk(sk);
897 897
diff --git a/net/llc/llc_core.c b/net/llc/llc_core.c
index 2bb0ddff8c0f..e251c0493ac0 100644
--- a/net/llc/llc_core.c
+++ b/net/llc/llc_core.c
@@ -48,7 +48,7 @@ static struct llc_sap *llc_sap_alloc(void)
48 48
49static struct llc_sap *__llc_sap_find(unsigned char sap_value) 49static struct llc_sap *__llc_sap_find(unsigned char sap_value)
50{ 50{
51 struct llc_sap* sap; 51 struct llc_sap *sap;
52 52
53 list_for_each_entry(sap, &llc_sap_list, node) 53 list_for_each_entry(sap, &llc_sap_list, node)
54 if (sap->laddr.lsap == sap_value) 54 if (sap->laddr.lsap == sap_value)
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,
66 return skb; 66 return skb;
67} 67}
68 68
69void llc_save_primitive(struct sock *sk, struct sk_buff* skb, u8 prim) 69void llc_save_primitive(struct sock *sk, struct sk_buff *skb, u8 prim)
70{ 70{
71 struct sockaddr_llc *addr; 71 struct sockaddr_llc *addr;
72 72
@@ -114,7 +114,7 @@ void llc_sap_rtn_pdu(struct llc_sap *sap, struct sk_buff *skb)
114 * failure. 114 * failure.
115 */ 115 */
116static struct llc_sap_state_trans *llc_find_sap_trans(struct llc_sap *sap, 116static struct llc_sap_state_trans *llc_find_sap_trans(struct llc_sap *sap,
117 struct sk_buff* skb) 117 struct sk_buff *skb)
118{ 118{
119 int i = 0; 119 int i = 0;
120 struct llc_sap_state_trans *rc = NULL; 120 struct llc_sap_state_trans *rc = NULL;