summaryrefslogtreecommitdiff
path: root/chip/mt8192_scp/ipi_chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/mt8192_scp/ipi_chip.h')
-rw-r--r--chip/mt8192_scp/ipi_chip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chip/mt8192_scp/ipi_chip.h b/chip/mt8192_scp/ipi_chip.h
index 13345fc6e2..8cc3376880 100644
--- a/chip/mt8192_scp/ipi_chip.h
+++ b/chip/mt8192_scp/ipi_chip.h
@@ -79,8 +79,8 @@ extern int *const ipi_wakeup_table[];
*/
#define DECLARE_IPI(_id, handler, is_wakeup_src) \
struct ipi_num_check##_id { \
- int dummy1[_id < IPI_COUNT ? 1 : -1]; \
- int dummy2[is_wakeup_src == 0 || is_wakeup_src == 1 ? 1 : -1]; \
+ int tmp1[_id < IPI_COUNT ? 1 : -1]; \
+ int tmp2[is_wakeup_src == 0 || is_wakeup_src == 1 ? 1 : -1]; \
}; \
void __keep IPI_HANDLER(_id)(int32_t id, void *buf, uint32_t len) \
{ \