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)
197
197
z_mips_enter_irq (irq );
198
198
}
199
199
200
+ #elif defined(CONFIG_MICROBLAZE )
201
+ static inline void trigger_irq (int irq )
202
+ {
203
+ EMULATE_IRQ (irq );
204
+ }
200
205
#else
201
206
/* So far, Nios II does not support this */
202
207
#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