File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 */
146146OBJPOOL_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 ) {
You can’t perform that action at this time.
0 commit comments