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/kernel/module.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/kernel/module.c')
-rw-r--r-- | arch/arc/kernel/module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/kernel/module.c b/arch/arc/kernel/module.c index cdd359352c0a..376e04622962 100644 --- a/arch/arc/kernel/module.c +++ b/arch/arc/kernel/module.c | |||
@@ -47,7 +47,7 @@ int module_frob_arch_sections(Elf_Ehdr *hdr, Elf_Shdr *sechdrs, | |||
47 | } | 47 | } |
48 | } | 48 | } |
49 | #endif | 49 | #endif |
50 | return 0; | 50 | return 0; |
51 | } | 51 | } |
52 | 52 | ||
53 | void module_arch_cleanup(struct module *mod) | 53 | void module_arch_cleanup(struct module *mod) |
@@ -141,5 +141,5 @@ int module_finalize(const Elf32_Ehdr *hdr, const Elf_Shdr *sechdrs, | |||
141 | mod->arch.unw_info = unw; | 141 | mod->arch.unw_info = unw; |
142 | } | 142 | } |
143 | #endif | 143 | #endif |
144 | return 0; | 144 | return 0; |
145 | } | 145 | } |