aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/asm-i386/processor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-i386/processor.h b/include/asm-i386/processor.h
index 914c1910491f60..4ccfc5d26c2152 100644
--- a/include/asm-i386/processor.h
+++ b/include/asm-i386/processor.h
@@ -495,7 +495,7 @@ struct extended_sigtable {
/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
static inline void rep_nop(void)
{
- __asm__ __volatile__("rep;nop" ::: "memory");
+ __asm__ __volatile__("rep;nop": : :"memory");
}
#define cpu_relax() rep_nop()