From 6a55d0e46b161a6104d372bf4739a2aeeaf1085b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Peixoto?= Date: Fri, 1 Nov 2024 17:42:13 +0000 Subject: [PATCH] ref(core/remio): renamed remote I/O CPU msg handler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Peixoto --- src/core/remio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/remio.c b/src/core/remio.c index eb4ca7ff..7dd2800b 100644 --- a/src/core/remio.c +++ b/src/core/remio.c @@ -137,10 +137,10 @@ struct list remio_device_list; * @param event Message event (REMIO_CPU_MSG_*) * @param data Remote I/O CPU message data (remio_cpu_msg_data) */ -static void remio_cpu_handler(uint32_t event, uint64_t data); +static void remio_cpu_msg_handler(uint32_t event, uint64_t data); /** Associate the Remote I/O CPU message handler with a new Remote I/O CPU message ID */ -CPU_MSG_HANDLER(remio_cpu_handler, REMIO_CPUMSG_ID) +CPU_MSG_HANDLER(remio_cpu_msg_handler, REMIO_CPUMSG_ID) /** Object pool to allocate Remote I/O devices */ OBJPOOL_ALLOC(remio_device_pool, struct remio_device, @@ -706,7 +706,7 @@ bool remio_mmio_emul_handler(struct emul_access* acc) return true; } -static void remio_cpu_handler(uint32_t event, uint64_t data) +static void remio_cpu_msg_handler(uint32_t event, uint64_t data) { union remio_cpu_msg_data msg = { .raw = data }; switch (event) {