diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-04-23 13:58:06 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-04-23 13:58:16 +0200 |
commit | 3bd5f3ef290627efa3c219fa21a82eea90bc4cb0 (patch) | |
tree | 8cfa4a8a9429b2919519bc2d8918af725ca6560e /arch/s390 | |
parent | 091069740304c979f957ceacec39c461d0192158 (diff) | |
download | linux-3.10-3bd5f3ef290627efa3c219fa21a82eea90bc4cb0.tar.gz linux-3.10-3bd5f3ef290627efa3c219fa21a82eea90bc4cb0.tar.bz2 linux-3.10-3bd5f3ef290627efa3c219fa21a82eea90bc4cb0.zip |
[S390] ipl: fix compile breakage
Fix this for !CONFIG_SMP:
arch/s390/kernel/ipl.c: In function 'stop_run':
arch/s390/kernel/ipl.c:1461: error: implicit declaration of function 'signal_processor'
Reported-by: Sachin Sant <sachinp@in.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kernel/ipl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c index 6f3711a0eaa..b8bf4b14006 100644 --- a/arch/s390/kernel/ipl.c +++ b/arch/s390/kernel/ipl.c @@ -23,6 +23,7 @@ #include <asm/ebcdic.h> #include <asm/reset.h> #include <asm/sclp.h> +#include <asm/sigp.h> #include <asm/checksum.h> #define IPL_PARM_BLOCK_VERSION 0 |