diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2016-11-23 20:43:17 -0500 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2016-11-28 12:17:32 -0500 |
commit | 3c7c7a2fc8811bc7097479f69acf2527693d7562 (patch) | |
tree | 2407907f410400d4dc6866f8062b7536ab78ac52 | |
parent | e5517c2a5a49ed5e99047008629f1cd60246ea0e (diff) |
ARC: Don't use "+l" inline asm constraint
Apparenty this is coming in the way of gcc fix which inhibits the usage
of LP_COUNT as a gpr.
Cc: stable@vger.kernel.org
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
-rw-r--r-- | arch/arc/include/asm/delay.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/arc/include/asm/delay.h b/arch/arc/include/asm/delay.h index 08e7e2a16ac1..a36e8601114d 100644 --- a/arch/arc/include/asm/delay.h +++ b/arch/arc/include/asm/delay.h | |||
@@ -22,10 +22,11 @@ | |||
22 | static inline void __delay(unsigned long loops) | 22 | static inline void __delay(unsigned long loops) |
23 | { | 23 | { |
24 | __asm__ __volatile__( | 24 | __asm__ __volatile__( |
25 | " lp 1f \n" | 25 | " mov lp_count, %0 \n" |
26 | " nop \n" | 26 | " lp 1f \n" |
27 | "1: \n" | 27 | " nop \n" |
28 | : "+l"(loops)); | 28 | "1: \n" |
29 | : : "r"(loops)); | ||
29 | } | 30 | } |
30 | 31 | ||
31 | extern void __bad_udelay(void); | 32 | extern void __bad_udelay(void); |