diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-07-25 01:29:19 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-07-26 08:12:18 +0200 |
commit | 16782a604c458e1edcefca52457a82395b788bed (patch) | |
tree | c6613e44b788b028a5bc0a6b080c14c84d959188 /arch/powerpc | |
parent | [POWERPC] iSeries: Fix section mismatch warnings (diff) | |
download | linux-16782a604c458e1edcefca52457a82395b788bed.tar.xz linux-16782a604c458e1edcefca52457a82395b788bed.zip |
[POWERPC] iSeries: Fix section mismatch warning in lpevents
WARNING: vmlinux.o(.text+0x4f568): Section mismatch: reference to .init.text:.__alloc_bootmem (between '.setup_hvlpevent_queue' and '.process_hvlpevents')
setup_hvlpevent_queue is only called from __init code so make it __init
as well.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/iseries/lpevents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/iseries/lpevents.c b/arch/powerpc/platforms/iseries/lpevents.c index 91df52a1899a..34bdbbe3ce59 100644 --- a/arch/powerpc/platforms/iseries/lpevents.c +++ b/arch/powerpc/platforms/iseries/lpevents.c @@ -182,7 +182,7 @@ static int set_spread_lpevents(char *str) } __setup("spread_lpevents=", set_spread_lpevents); -void setup_hvlpevent_queue(void) +void __init setup_hvlpevent_queue(void) { void *eventStack; |