microblaze_fpga/include/tm27.h: Fix unused variable warning

This implementation of the tm27 helpers is non-functional. It
needed to at least indicate that it was not using a parameter.
This commit is contained in:
Joel Sherrill
2025-07-07 08:45:48 -05:00
committed by Gedare Bloom
parent a8869154b4
commit ef1edd5bea

View File

@@ -47,7 +47,10 @@
#define MUST_WAIT_FOR_INTERRUPT 0
#define Install_tm27_vector( handler ) /* set_vector( (handler), 6, 1 ) */
#define Install_tm27_vector( handler ) \
do { \
(void) (handler); \
} while (0)
#define Cause_tm27_intr() /* empty */