aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/bcast.h
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2013-06-17 10:54:47 -0400
committerDavid S. Miller <davem@davemloft.net>2013-06-17 15:53:01 -0700
commitae8509c420122866344bde1241e31858d0aa2fbc (patch)
tree5a026fe1729da4d5291951376683582cef9bf760 /net/tipc/bcast.h
parenttipc: save sock structure pointer instead of void pointer to tipc_port (diff)
downloadlinux-dev-ae8509c420122866344bde1241e31858d0aa2fbc.tar.xz
linux-dev-ae8509c420122866344bde1241e31858d0aa2fbc.zip
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/bcast.h')
-rw-r--r--net/tipc/bcast.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tipc/bcast.h b/net/tipc/bcast.h
index a93306557e00..6ee587b469fd 100644
--- a/net/tipc/bcast.h
+++ b/net/tipc/bcast.h
@@ -75,7 +75,8 @@ void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node);
/**
* tipc_nmap_equal - test for equality of node maps
*/
-static inline int tipc_nmap_equal(struct tipc_node_map *nm_a, struct tipc_node_map *nm_b)
+static inline int tipc_nmap_equal(struct tipc_node_map *nm_a,
+ struct tipc_node_map *nm_b)
{
return !memcmp(nm_a, nm_b, sizeof(*nm_a));
}