Commit 3962dab7 authored by Gaetan Perrot's avatar Gaetan Perrot Committed by Dan Kalowsky
Browse files

arch: arm64: core: fpu: mark unused function argument



Use ARG_UNUSED() to mark unused function argument.

Signed-off-by: default avatarGaetan Perrot <gaetan.perrot@spacecubics.com>
parent 92826ff3
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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;
}