diff options
| author | Allan Stephens <Allan.Stephens@windriver.com> | 2010-12-31 18:59:32 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-01-01 13:57:56 -0800 | 
| commit | 0e65967e33be61e5f67727edd4ea829b47676fc0 (patch) | |
| tree | 1135d631e0cb88af3f8b060b8c32a130315542d8 /include/linux/tipc.h | |
| parent | 25860c3bd5bd1db236d4fd5826d76127d677dc28 (diff) | |
| download | olio-linux-3.10-0e65967e33be61e5f67727edd4ea829b47676fc0.tar.xz olio-linux-3.10-0e65967e33be61e5f67727edd4ea829b47676fc0.zip  | |
tipc: cleanup various cosmetic whitespace issues
Cleans up TIPC's source code to eliminate deviations from generally
accepted coding conventions relating to leading/trailing white space
and white space around commas, braces, cases, and sizeof.
These changes are purely cosmetic and do not alter the operation of TIPC
in any way.
Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/tipc.h')
| -rw-r--r-- | include/linux/tipc.h | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/include/linux/tipc.h b/include/linux/tipc.h index d10614b29d5..1eefa3f6d1f 100644 --- a/include/linux/tipc.h +++ b/include/linux/tipc.h @@ -1,6 +1,6 @@  /*   * include/linux/tipc.h: Include file for TIPC socket interface - *  + *   * Copyright (c) 2003-2006, Ericsson AB   * Copyright (c) 2005, Wind River Systems   * All rights reserved. @@ -42,7 +42,7 @@  /*   * TIPC addressing primitives   */ -  +  struct tipc_portid {  	__u32 ref;  	__u32 node; @@ -89,7 +89,7 @@ static inline unsigned int tipc_node(__u32 addr)  #define TIPC_TOP_SRV		1	/* topology service name type */  #define TIPC_RESERVED_TYPES	64	/* lowest user-publishable name type */ -/*  +/*   * Publication scopes when binding port names and port name sequences   */ @@ -112,7 +112,7 @@ static inline unsigned int tipc_node(__u32 addr)  #define TIPC_HIGH_IMPORTANCE		2  #define TIPC_CRITICAL_IMPORTANCE	3 -/*  +/*   * Msg rejection/connection shutdown reasons   */ @@ -127,9 +127,9 @@ static inline unsigned int tipc_node(__u32 addr)   * TIPC topology subscription service definitions   */ -#define TIPC_SUB_PORTS     	0x01  	/* filter for port availability */ -#define TIPC_SUB_SERVICE     	0x02  	/* filter for service availability */ -#define TIPC_SUB_CANCEL         0x04    /* cancel a subscription */ +#define TIPC_SUB_PORTS		0x01	/* filter for port availability */ +#define TIPC_SUB_SERVICE	0x02	/* filter for service availability */ +#define TIPC_SUB_CANCEL		0x04	/* cancel a subscription */  #if 0  /* The following filter options are not currently implemented */  #define TIPC_SUB_NO_BIND_EVTS	0x04	/* filter out "publish" events */ @@ -137,12 +137,12 @@ static inline unsigned int tipc_node(__u32 addr)  #define TIPC_SUB_SINGLE_EVT	0x10	/* expire after first event */  #endif -#define TIPC_WAIT_FOREVER	~0	/* timeout for permanent subscription */ +#define TIPC_WAIT_FOREVER	(~0)	/* timeout for permanent subscription */  struct tipc_subscr {  	struct tipc_name_seq seq;	/* name sequence of interest */  	__u32 timeout;			/* subscription duration (in ms) */ -        __u32 filter;   		/* bitmask of filter options */ +	__u32 filter;			/* bitmask of filter options */  	char usr_handle[8];		/* available for subscriber use */  };  |