diff options
author | wangweidong <wangweidong1@huawei.com> | 2013-12-22 23:16:51 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-26 13:47:47 -0500 |
commit | 26ac8e5fe1562831e68ccd9f7057aade37aab2a3 (patch) | |
tree | b794c102b9c92d6a7433af238d4332ea6424a893 /net/sctp/ulpqueue.c | |
parent | cb3f837ba95d7774978e86fc17ddf970cf7d15a4 (diff) |
sctp: fix checkpatch errors with (foo*)|foo * bar|foo* bar
fix checkpatch errors below:
ERROR: "(foo*)" should be "(foo *)"
ERROR: "foo * bar" should be "foo *bar"
ERROR: "foo* bar" should be "foo *bar"
Signed-off-by: Wang Weidong <wangweidong1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/ulpqueue.c')
-rw-r--r-- | net/sctp/ulpqueue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/ulpqueue.c b/net/sctp/ulpqueue.c index 2d96640b7ad8..c700369d11f7 100644 --- a/net/sctp/ulpqueue.c +++ b/net/sctp/ulpqueue.c | |||
@@ -43,9 +43,9 @@ | |||
43 | #include <net/sctp/sm.h> | 43 | #include <net/sctp/sm.h> |
44 | 44 | ||
45 | /* Forward declarations for internal helpers. */ | 45 | /* Forward declarations for internal helpers. */ |
46 | static struct sctp_ulpevent * sctp_ulpq_reasm(struct sctp_ulpq *ulpq, | 46 | static struct sctp_ulpevent *sctp_ulpq_reasm(struct sctp_ulpq *ulpq, |
47 | struct sctp_ulpevent *); | 47 | struct sctp_ulpevent *); |
48 | static struct sctp_ulpevent * sctp_ulpq_order(struct sctp_ulpq *, | 48 | static struct sctp_ulpevent *sctp_ulpq_order(struct sctp_ulpq *, |
49 | struct sctp_ulpevent *); | 49 | struct sctp_ulpevent *); |
50 | static void sctp_ulpq_reasm_drain(struct sctp_ulpq *ulpq); | 50 | static void sctp_ulpq_reasm_drain(struct sctp_ulpq *ulpq); |
51 | 51 | ||