summaryrefslogtreecommitdiff
path: root/arm9/lib/src
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2020-07-27 10:59:58 -0400
committerGitHub <noreply@github.com>2020-07-27 10:59:58 -0400
commitbb6d2a9a3178b421ed5c6cb738e93257834d1f54 (patch)
treef410221677f32a44ebb71c93eeb4609c6217c48b /arm9/lib/src
parent8e1946da03f96b5696d3f8f248a2b675ba80d594 (diff)
parent1a6f96cf99c403b5fa22bd94a45db55c0adaff9e (diff)
Merge pull request #245 from red031000/master
finish poketch sinit sections + 62 sinit + arm7 RTC cleanup
Diffstat (limited to 'arm9/lib/src')
-rw-r--r--arm9/lib/src/MI_dma_gxcommand.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arm9/lib/src/MI_dma_gxcommand.c b/arm9/lib/src/MI_dma_gxcommand.c
index 781f1f73..26231999 100644
--- a/arm9/lib/src/MI_dma_gxcommand.c
+++ b/arm9/lib/src/MI_dma_gxcommand.c
@@ -110,6 +110,7 @@ ARM_FUNC static void MIi_FIFOCallback(void)
ARM_FUNC static void MIi_DMACallback(void *arg)
{
+#pragma unused(arg)
(void)OS_DisableIrqMask(OS_IE_GXFIFO);
G3X_SetFifoIntrCond(MIi_GXDmaParams.fifoCond);
@@ -147,6 +148,7 @@ ARM_FUNC void MI_SendGXCommandAsyncFast(u32 dmaNo, const void *src, u32 commandL
ARM_FUNC static void MIi_DMAFastCallback(void *arg)
{
+#pragma unused(arg)
MIi_GXDmaParams.isBusy = FALSE;
MIi_CallCallback(MIi_GXDmaParams.callback, MIi_GXDmaParams.arg);