diff options
author | Todd Poynor <tpoynor@mvista.com> | 2005-07-06 18:06:05 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-07-06 18:06:05 -0400 |
commit | 7bc7fc50ce272d9a68f8e11707cfc2cc94f4e8f5 (patch) | |
tree | 891265ca82decd715c32c7029671502d0aa79d6f /arch/arm/kernel/armksyms.c | |
parent | bcaafbe4a14e3c9b5275b3986c7599f7c6c278e4 (diff) |
[PATCH] ARM: 2791/1: Add CRCs for aliased ARM symbols
Patch from Todd Poynor
Fix module versioning for 3 ARM symbols that do not have CRCs added,
avoid "disagrees about version of symbol struct_module" errors at module
load time. From David Singleton.
Signed-off-by: Todd Poynor <tpoynor@mvista.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/armksyms.c')
-rw-r--r-- | arch/arm/kernel/armksyms.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/kernel/armksyms.c b/arch/arm/kernel/armksyms.c index b713c44c6fb4..835d450797a1 100644 --- a/arch/arm/kernel/armksyms.c +++ b/arch/arm/kernel/armksyms.c | |||
@@ -41,7 +41,10 @@ extern void fp_enter(void); | |||
41 | * This has a special calling convention; it doesn't | 41 | * This has a special calling convention; it doesn't |
42 | * modify any of the usual registers, except for LR. | 42 | * modify any of the usual registers, except for LR. |
43 | */ | 43 | */ |
44 | #define EXPORT_CRC_ALIAS(sym) __CRC_SYMBOL(sym, "") | ||
45 | |||
44 | #define EXPORT_SYMBOL_ALIAS(sym,orig) \ | 46 | #define EXPORT_SYMBOL_ALIAS(sym,orig) \ |
47 | EXPORT_CRC_ALIAS(sym) \ | ||
45 | const struct kernel_symbol __ksymtab_##sym \ | 48 | const struct kernel_symbol __ksymtab_##sym \ |
46 | __attribute__((section("__ksymtab"))) = \ | 49 | __attribute__((section("__ksymtab"))) = \ |
47 | { (unsigned long)&orig, #sym }; | 50 | { (unsigned long)&orig, #sym }; |