From 3962dab7071e01871088eef519ece2b97b594494 Mon Sep 17 00:00:00 2001 From: Gaetan Perrot Date: Sun, 6 Jul 2025 02:37:06 +0900 Subject: [PATCH] arch: arm64: core: fpu: mark unused function argument Use ARG_UNUSED() to mark unused function argument. Signed-off-by: Gaetan Perrot --- arch/arm64/core/fpu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64/core/fpu.c b/arch/arm64/core/fpu.c index a585165b943..f6162fa2ab3 100644 --- a/arch/arm64/core/fpu.c +++ b/arch/arm64/core/fpu.c @@ -346,6 +346,8 @@ int arch_float_disable(struct k_thread *thread) int arch_float_enable(struct k_thread *thread, unsigned int options) { + ARG_UNUSED(thread); + ARG_UNUSED(options); /* floats always gets enabled automatically at the moment */ return 0; }