diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2015-10-07 10:54:36 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-10-14 14:32:12 +0200 |
commit | 0c5a69f432ba1e586ac6ae5e4311c2f1cbd051fa (patch) | |
tree | b0791a34b7131dc92963e21ff6ccc5afbca6fd09 | |
parent | e22cf8ca6f75a6c4fccf2d6ee818bdb1205f32e6 (diff) | |
download | linux-0c5a69f432ba1e586ac6ae5e4311c2f1cbd051fa.tar.bz2 |
s390/compiler.h Fix sparse vs. hotpatch
sparse does not understand the s390 specific hotpatch attribute and
floods the log with messages like
include/uapi/linux/swab.h:92:8: error: attribute 'hotpatch': unknown attribute
Let's just dont use it, if __CHECKER__ is defined.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r-- | include/linux/compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index c836eb2dc44d..449cb674c7fa 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h @@ -56,7 +56,7 @@ extern void __chk_io_ptr(const volatile void __iomem *); #include <linux/compiler-gcc.h> #endif -#ifdef CC_USING_HOTPATCH +#if defined(CC_USING_HOTPATCH) && !defined(__CHECKER__) #define notrace __attribute__((hotpatch(0,0))) #else #define notrace __attribute__((no_instrument_function)) |