[S390] incorrect placement of include.

The include of linux/smp.h needs to be done before the #if that
checks for the compiler version. Seems like fallout from the
inline assembly cleanup patch vs. the directed yield patch.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

+2 -2
+2 -2
include/asm-s390/spinlock.h
··· 11 11 #ifndef __ASM_SPINLOCK_H 12 12 #define __ASM_SPINLOCK_H 13 13 14 - #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 2) 15 - 16 14 #include <linux/smp.h> 15 + 16 + #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 2) 17 17 18 18 static inline int 19 19 _raw_compare_and_swap(volatile unsigned int *lock,