aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/genksyms
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/genksyms')
-rw-r--r--scripts/genksyms/genksyms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/genksyms/genksyms.c b/scripts/genksyms/genksyms.c
index 416a694b0998..ef8822e59cda 100644
--- a/scripts/genksyms/genksyms.c
+++ b/scripts/genksyms/genksyms.c
@@ -32,7 +32,7 @@
32#endif /* __GNU_LIBRARY__ */ 32#endif /* __GNU_LIBRARY__ */
33 33
34#include "genksyms.h" 34#include "genksyms.h"
35 35#include "../mod/elfconfig.h"
36/*----------------------------------------------------------------------*/ 36/*----------------------------------------------------------------------*/
37 37
38#define HASH_BUCKETS 4096 38#define HASH_BUCKETS 4096
@@ -458,7 +458,7 @@ export_symbol(const char *name)
458 fputs(">\n", debugfile); 458 fputs(">\n", debugfile);
459 459
460 /* Used as a linker script. */ 460 /* Used as a linker script. */
461 printf("__crc_%s = 0x%08lx ;\n", name, crc); 461 printf("%s__crc_%s = 0x%08lx ;\n", MODULE_SYMBOL_PREFIX, name, crc);
462 } 462 }
463} 463}
464 464