From c893731d11b9503c08e4d8f47abd01e01c4c2a0a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 9 Feb 2026 16:59:41 -0600 Subject: [PATCH] bsps/powerpc/include/bsp/VMEDMA.h: Address cast-function-type warning This warning occurs when casting a function pointer to be a function of a different type. --- bsps/powerpc/include/bsp/VMEDMA.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsps/powerpc/include/bsp/VMEDMA.h b/bsps/powerpc/include/bsp/VMEDMA.h index e9562ee667..3ab2160c8e 100644 --- a/bsps/powerpc/include/bsp/VMEDMA.h +++ b/bsps/powerpc/include/bsp/VMEDMA.h @@ -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, uint32_t vector); +typedef void (*BSP_VMEDmaIRQCallback)(void *usr_arg, uintptr_t vector); int BSP_VMEDmaInstallISR(int channel, BSP_VMEDmaIRQCallback cb, void *usr_arg);