We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ceb1a6 commit c916e3aCopy full SHA for c916e3a
subsys/testsuite/include/zephyr/interrupt_util.h
@@ -197,6 +197,11 @@ static inline void trigger_irq(int irq)
197
z_mips_enter_irq(irq);
198
}
199
200
+#elif defined(CONFIG_MICROBLAZE)
201
+static inline void trigger_irq(int irq)
202
+{
203
+ EMULATE_IRQ(irq);
204
+}
205
#else
206
/* So far, Nios II does not support this */
207
#define NO_TRIGGER_FROM_SW
subsys/testsuite/include/zephyr/test_asm_inline_gcc.h
@@ -48,6 +48,8 @@ static inline void timestamp_serialize(void)
48
#define timestamp_serialize()
49
#elif defined(CONFIG_MIPS)
50
51
52
+#define timestamp_serialize()
53
54
#error implementation of timestamp_serialize() not provided for your CPU target
55
#endif
0 commit comments