diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2013-06-17 18:54:47 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-18 02:53:01 +0400 |
commit | ae8509c420122866344bde1241e31858d0aa2fbc (patch) | |
tree | 5a026fe1729da4d5291951376683582cef9bf760 /net/tipc/port.c | |
parent | c0fee8aca7206264d5e3dcc4e60aaf86501f4ea1 (diff) | |
download | linux-ae8509c420122866344bde1241e31858d0aa2fbc.tar.xz |
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.c')
-rw-r--r-- | net/tipc/port.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/tipc/port.c b/net/tipc/port.c index 0bb185a3ed4a..b3ed2fcab4fb 100644 --- a/net/tipc/port.c +++ b/net/tipc/port.c @@ -207,9 +207,10 @@ exit: * Returns pointer to (locked) TIPC port, or NULL if unable to create it */ struct tipc_port *tipc_createport(struct sock *sk, - u32 (*dispatcher)(struct tipc_port *, struct sk_buff *), - void (*wakeup)(struct tipc_port *), - const u32 importance) + u32 (*dispatcher)(struct tipc_port *, + struct sk_buff *), + void (*wakeup)(struct tipc_port *), + const u32 importance) { struct tipc_port *p_ptr; struct tipc_msg *msg; |