File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
subsys/testsuite/include/zephyr Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -197,6 +197,11 @@ static inline void trigger_irq(int irq)
197197 z_mips_enter_irq (irq );
198198}
199199
200+ #elif defined(CONFIG_MICROBLAZE )
201+ static inline void trigger_irq (int irq )
202+ {
203+ EMULATE_IRQ (irq );
204+ }
200205#else
201206/* So far, Nios II does not support this */
202207#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)
4848#define timestamp_serialize ()
4949#elif defined(CONFIG_MIPS )
5050#define timestamp_serialize ()
51+ #elif defined(CONFIG_MICROBLAZE )
52+ #define timestamp_serialize ()
5153#else
5254#error implementation of timestamp_serialize() not provided for your CPU target
5355#endif
You can’t perform that action at this time.
0 commit comments