Commit 503011d0 authored by Gaetan Perrot's avatar Gaetan Perrot Committed by Daniel DeGrasse
Browse files

arch: arm: core: cortex_a_r: mark unused function argument



Use ARG_UNUSED() to mark unused function argument.

Signed-off-by: default avatarGaetan Perrot <gaetan.perrot@spacecubics.com>
parent 3aa477ba
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -409,6 +409,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);
	/* This is not supported in Cortex-A and Cortex-R */
	return -ENOTSUP;
}