diff options
author | Mark Brown <broonie@linaro.org> | 2014-03-06 12:43:51 +0800 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-06 12:43:51 +0800 |
commit | e37912fd0bdf174e934af6cfb0002a077867b644 (patch) | |
tree | c661c8a6e20e013abf4dd5ac27b9a70f218ff290 /include/linux/compiler-gcc4.h | |
parent | 8535736c27cc4e25b9948d857138315f45b6fa34 (diff) | |
parent | 37f204164dfb0186a0caf20bc3e3120080bcd788 (diff) |
Merge branch 'pm-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm into spi-pl022
Diffstat (limited to 'include/linux/compiler-gcc4.h')
-rw-r--r-- | include/linux/compiler-gcc4.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/linux/compiler-gcc4.h b/include/linux/compiler-gcc4.h index ded429966c1..2507fd2a1eb 100644 --- a/include/linux/compiler-gcc4.h +++ b/include/linux/compiler-gcc4.h @@ -75,11 +75,7 @@ * * (asm goto is automatically volatile - the naming reflects this.) */ -#if GCC_VERSION <= 40801 -# define asm_volatile_goto(x...) do { asm goto(x); asm (""); } while (0) -#else -# define asm_volatile_goto(x...) do { asm goto(x); } while (0) -#endif +#define asm_volatile_goto(x...) do { asm goto(x); asm (""); } while (0) #ifdef CONFIG_ARCH_USE_BUILTIN_BSWAP #if GCC_VERSION >= 40400 |