ARC: Fix build failures for ARCompact in linux-next after ARCv2 support
Reported-by: Guenter Roeck <private@roeck-us.net>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
diff --git a/arch/arc/kernel/process.c b/arch/arc/kernel/process.c
index 5156043..4409245 100644
--- a/arch/arc/kernel/process.c
+++ b/arch/arc/kernel/process.c
@@ -47,13 +47,7 @@
if (is_isa_arcompact()) {
__asm__("sleep 0x3");
} else {
- /* default irq priority (<=) which can interrupt the doze */
- const int arg = 0x10 | ARCV2_IRQ_DEF_PRIO;
-
- __asm__ __volatile__(
- "sleep %0 \n"
- :
- :"r"(arg));
+ __asm__("sleep 0x10");
}
}