diff options
author | Joe Perches <joe@perches.com> | 2011-07-01 05:43:12 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-01 19:11:16 -0400 |
commit | 89f0e4feafb64643b0f0aba9d89984362bac9739 (patch) | |
tree | b6d9a44b6f5099b1f489e3140bff611abb020884 /net/sunrpc/rpc_pipe.c | |
parent | 7fd71b1e0787d4d32c6225ca59e23e522cd67cc3 (diff) |
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 'net/sunrpc/rpc_pipe.c')
-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) | |||
456 | inode->i_ino = get_next_ino(); | 456 | inode->i_ino = get_next_ino(); |
457 | inode->i_mode = mode; | 457 | inode->i_mode = mode; |
458 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; | 458 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
459 | switch(mode & S_IFMT) { | 459 | switch (mode & S_IFMT) { |
460 | case S_IFDIR: | 460 | case S_IFDIR: |
461 | inode->i_fop = &simple_dir_operations; | 461 | inode->i_fop = &simple_dir_operations; |
462 | inode->i_op = &simple_dir_inode_operations; | 462 | inode->i_op = &simple_dir_inode_operations; |
463 | inc_nlink(inode); | 463 | inc_nlink(inode); |
464 | default: | 464 | default: |
465 | break; | 465 | break; |
466 | } | 466 | } |
467 | return inode; | 467 | return inode; |
468 | } | 468 | } |