diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 18:55:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 18:55:33 -0400 |
commit | 9401c705f2a6a7e5df102f6443dba395c3c5e5a8 (patch) | |
tree | 19bf660a776995b01c29228604824bb9823e24f3 /scripts/mod/modpost.c | |
parent | 61b22e693ea33af02f3380d3dbed9ee65a80c729 (diff) | |
parent | 074c5279ef671e4fcd2ce2960ecc9d7d9735fabd (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
Diffstat (limited to 'scripts/mod/modpost.c')
-rw-r--r-- | scripts/mod/modpost.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 09ffca54b373..3bed09e625c0 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -370,6 +370,12 @@ handle_modversions(struct module *mod, struct elf_info *info, | |||
370 | /* Ignore register directives. */ | 370 | /* Ignore register directives. */ |
371 | if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER) | 371 | if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER) |
372 | break; | 372 | break; |
373 | if (symname[0] == '.') { | ||
374 | char *munged = strdup(symname); | ||
375 | munged[0] = '_'; | ||
376 | munged[1] = toupper(munged[1]); | ||
377 | symname = munged; | ||
378 | } | ||
373 | } | 379 | } |
374 | #endif | 380 | #endif |
375 | 381 | ||