diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2013-06-17 10:54:47 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-17 18:53:01 -0400 |
commit | ae8509c420122866344bde1241e31858d0aa2fbc (patch) | |
tree | 5a026fe1729da4d5291951376683582cef9bf760 /net/tipc/port.h | |
parent | c0fee8aca7206264d5e3dcc4e60aaf86501f4ea1 (diff) |
tipc: cosmetic realignment of function arguments
No runtime code changes here. Just a realign of the function
arguments to start where the 1st one was, and fit as many args
as can be put in an 80 char line.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/port.h')
-rw-r--r-- | net/tipc/port.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/tipc/port.h b/net/tipc/port.h index 241f529db942..5a7026b9c345 100644 --- a/net/tipc/port.h +++ b/net/tipc/port.h | |||
@@ -107,8 +107,10 @@ struct tipc_port_list; | |||
107 | * TIPC port manipulation routines | 107 | * TIPC port manipulation routines |
108 | */ | 108 | */ |
109 | struct tipc_port *tipc_createport(struct sock *sk, | 109 | struct tipc_port *tipc_createport(struct sock *sk, |
110 | u32 (*dispatcher)(struct tipc_port *, struct sk_buff *), | 110 | u32 (*dispatcher)(struct tipc_port *, |
111 | void (*wakeup)(struct tipc_port *), const u32 importance); | 111 | struct sk_buff *), |
112 | void (*wakeup)(struct tipc_port *), | ||
113 | const u32 importance); | ||
112 | 114 | ||
113 | int tipc_reject_msg(struct sk_buff *buf, u32 err); | 115 | int tipc_reject_msg(struct sk_buff *buf, u32 err); |
114 | 116 | ||
@@ -126,9 +128,9 @@ int tipc_portunreturnable(u32 portref, unsigned int *isunreturnable); | |||
126 | int tipc_set_portunreturnable(u32 portref, unsigned int isunreturnable); | 128 | int tipc_set_portunreturnable(u32 portref, unsigned int isunreturnable); |
127 | 129 | ||
128 | int tipc_publish(u32 portref, unsigned int scope, | 130 | int tipc_publish(u32 portref, unsigned int scope, |
129 | struct tipc_name_seq const *name_seq); | 131 | struct tipc_name_seq const *name_seq); |
130 | int tipc_withdraw(u32 portref, unsigned int scope, | 132 | int tipc_withdraw(u32 portref, unsigned int scope, |
131 | struct tipc_name_seq const *name_seq); | 133 | struct tipc_name_seq const *name_seq); |
132 | 134 | ||
133 | int tipc_connect(u32 portref, struct tipc_portid const *port); | 135 | int tipc_connect(u32 portref, struct tipc_portid const *port); |
134 | 136 | ||