]> bbs.cooldavid.org Git - net-next-2.6.git/commit
kbuild: Fix crc-error warning on modules
authorLuke Yang <luke.adi@gmail.com>
Wed, 21 Dec 2005 02:27:23 +0000 (10:27 +0800)
committerSam Ravnborg <sam@mars.ravnborg.org>
Sun, 25 Dec 2005 20:18:11 +0000 (21:18 +0100)
commit9572b28faf72859c6b91891c627870cfa282d19d
treeffb70ad557c91ea836eaab5bde0fbecc1f1d8d96
parent9cc5d74c847dd3a9ea121b5bbca07bd5791c54ee
kbuild: Fix crc-error warning on modules

   This is the patch for the following issue:

 In include/linux/module.h, "__crc_" and "__ksymtab_" are hard
coded to be the   prefix for some kinds of symbols (CRC symbol and
ksymtab section). But in script /mod/modpost.c,
MODULE_SYMBOL_PREFIX##"__crc_" is used as the prefix to search CRC
symbols. So if an architecture (such as h8300 or Blackfin) defines
MODULE_SYMBOL_PREFIX as not NULL ("_"), modpost will always warn about
"no invalid crc".
  And it is the same with KSYMTAB_PFX.

Signed-off-by: Luke Yang <luke.adi@gmail.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
scripts/mod/modpost.c