bsps/powerpc/include/bsp/VMEDMA.h: Fix function cast warnings.

This changes the signature of the VMEBus DMA IRQ Callback type
(BSP_VMEDmaIRQCallback) to match that expected by BSP_installVME_isr()
when the callback is installed.
This commit is contained in:
Joel Sherrill
2026-01-08 16:51:35 -06:00
committed by Gedare Bloom
parent 9a55909e09
commit 485e0b2b79

View File

@@ -200,7 +200,7 @@ BSP_VMEDmaStatus(int channel);
* RETURNS: 0 on success, nonzero on failure (IRQ in use, unsupported
* channel).
*/
typedef void (*BSP_VMEDmaIRQCallback)(void *usr_arg);
typedef void (*BSP_VMEDmaIRQCallback)(void *usr_arg, uint32_t vector);
int
BSP_VMEDmaInstallISR(int channel, BSP_VMEDmaIRQCallback cb, void *usr_arg);