diff options
author | Joe Perches <joe@perches.com> | 2011-07-01 09:43:12 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-01 16:11:16 -0700 |
commit | 89f0e4feafb64643b0f0aba9d89984362bac9739 (patch) | |
tree | b6d9a44b6f5099b1f489e3140bff611abb020884 /net/sunrpc/rpc_pipe.c | |
parent | sctp: Reduce switch/case indent (diff) | |
download | linux-dev-89f0e4feafb64643b0f0aba9d89984362bac9739.tar.xz linux-dev-89f0e4feafb64643b0f0aba9d89984362bac9739.zip |
sunrpc: Reduce switch/case indent
Make the case labels the same indent as the switch.
git diff -w shows 80 column line reflowing.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | net/sunrpc/rpc_pipe.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c index 72bc53683965..b181e3441323 100644 --- a/net/sunrpc/rpc_pipe.c +++ b/net/sunrpc/rpc_pipe.c @@ -456,13 +456,13 @@ rpc_get_inode(struct super_block *sb, umode_t mode) inode->i_ino = get_next_ino(); inode->i_mode = mode; inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; - switch(mode & S_IFMT) { - case S_IFDIR: - inode->i_fop = &simple_dir_operations; - inode->i_op = &simple_dir_inode_operations; - inc_nlink(inode); - default: - break; + switch (mode & S_IFMT) { + case S_IFDIR: + inode->i_fop = &simple_dir_operations; + inode->i_op = &simple_dir_inode_operations; + inc_nlink(inode); + default: + break; } return inode; } |