diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-03-06 06:23:45 -0500 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2013-04-09 02:51:14 -0400 |
commit | 955ad5959f913bd340ecb8d5e78d03ef7d1b0392 (patch) | |
tree | 1add68a5f58568c91d2a68b07c0194f21a0d5021 /arch/arc/mm/extable.c | |
parent | 1ec9db1056b0c4b8b9dfca4736634c7c8e0833d5 (diff) |
ARC: Fix coding style issues
Fixes the following coding style issues as detected by checkpatch:
ERROR: space required before the open parenthesis '('
ERROR: "foo * bar" should be "foo *bar"
WARNING: space prohibited between function name and open parenthesis '('
WARNING: please, no spaces at the start of a line
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/mm/extable.c')
-rw-r--r-- | arch/arc/mm/extable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/mm/extable.c b/arch/arc/mm/extable.c index 014172ba8432..aa652e281324 100644 --- a/arch/arc/mm/extable.c +++ b/arch/arc/mm/extable.c | |||
@@ -27,7 +27,7 @@ int fixup_exception(struct pt_regs *regs) | |||
27 | 27 | ||
28 | #ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE | 28 | #ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE |
29 | 29 | ||
30 | long arc_copy_from_user_noinline(void *to, const void __user * from, | 30 | long arc_copy_from_user_noinline(void *to, const void __user *from, |
31 | unsigned long n) | 31 | unsigned long n) |
32 | { | 32 | { |
33 | return __arc_copy_from_user(to, from, n); | 33 | return __arc_copy_from_user(to, from, n); |
@@ -48,7 +48,7 @@ unsigned long arc_clear_user_noinline(void __user *to, | |||
48 | } | 48 | } |
49 | EXPORT_SYMBOL(arc_clear_user_noinline); | 49 | EXPORT_SYMBOL(arc_clear_user_noinline); |
50 | 50 | ||
51 | long arc_strncpy_from_user_noinline (char *dst, const char __user *src, | 51 | long arc_strncpy_from_user_noinline(char *dst, const char __user *src, |
52 | long count) | 52 | long count) |
53 | { | 53 | { |
54 | return __arc_strncpy_from_user(dst, src, count); | 54 | return __arc_strncpy_from_user(dst, src, count); |