Skip to content

Commit 6a55d0e

Browse files
committed
ref(core/remio): renamed remote I/O CPU msg handler
Signed-off-by: João Peixoto <[email protected]>
1 parent 20ca7c7 commit 6a55d0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/remio.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ struct list remio_device_list;
137137
* @param event Message event (REMIO_CPU_MSG_*)
138138
* @param data Remote I/O CPU message data (remio_cpu_msg_data)
139139
*/
140-
static void remio_cpu_handler(uint32_t event, uint64_t data);
140+
static void remio_cpu_msg_handler(uint32_t event, uint64_t data);
141141

142142
/** Associate the Remote I/O CPU message handler with a new Remote I/O CPU message ID */
143-
CPU_MSG_HANDLER(remio_cpu_handler, REMIO_CPUMSG_ID)
143+
CPU_MSG_HANDLER(remio_cpu_msg_handler, REMIO_CPUMSG_ID)
144144

145145
/** Object pool to allocate Remote I/O devices */
146146
OBJPOOL_ALLOC(remio_device_pool, struct remio_device,
@@ -706,7 +706,7 @@ bool remio_mmio_emul_handler(struct emul_access* acc)
706706
return true;
707707
}
708708

709-
static void remio_cpu_handler(uint32_t event, uint64_t data)
709+
static void remio_cpu_msg_handler(uint32_t event, uint64_t data)
710710
{
711711
union remio_cpu_msg_data msg = { .raw = data };
712712
switch (event) {

0 commit comments

Comments
 (0)