File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
subsys/testsuite/include/zephyr Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,12 @@ static inline void trigger_irq(int irq)
213
213
z_vim_arm_enter_irq (irq );
214
214
}
215
215
216
+ #elif defined(CONFIG_MICROBLAZE )
217
+ static inline void trigger_irq (int irq )
218
+ {
219
+ EMULATE_IRQ (irq );
220
+ }
221
+
216
222
#else
217
223
/* So far, Nios II does not support this */
218
224
#define NO_TRIGGER_FROM_SW
Original file line number Diff line number Diff line change @@ -48,6 +48,8 @@ static inline void timestamp_serialize(void)
48
48
#define timestamp_serialize ()
49
49
#elif defined(CONFIG_MIPS )
50
50
#define timestamp_serialize ()
51
+ #elif defined(CONFIG_MICROBLAZE )
52
+ #define timestamp_serialize ()
51
53
#else
52
54
#error implementation of timestamp_serialize() not provided for your CPU target
53
55
#endif
You can’t perform that action at this time.
0 commit comments