From: Sebastian Ott Date: Thu, 25 Jun 2015 07:32:22 +0000 (+0200) Subject: s390/sclp: fix compile error X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a313bdc5310dd807655d3ca3eb2219cd65dfe45a;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git s390/sclp: fix compile error Fix this error when compiling with CONFIG_SMP=n and CONFIG_DYNAMIC_DEBUG=y: drivers/s390/char/sclp_early.c: In function 'sclp_read_info_early': drivers/s390/char/sclp_early.c:87:19: error: 'EBUSY' undeclared (first use in this function) } while (rc == -EBUSY); ^ Signed-off-by: Sebastian Ott Signed-off-by: Martin Schwidefsky --- diff --git a/drivers/s390/char/sclp_early.c b/drivers/s390/char/sclp_early.c index aeed7969fd79..7bc6df3100ef 100644 --- a/drivers/s390/char/sclp_early.c +++ b/drivers/s390/char/sclp_early.c @@ -7,6 +7,7 @@ #define KMSG_COMPONENT "sclp_early" #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt +#include #include #include #include