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

Use ARG_UNUSED() to mark unused function argument.

Signed-off-by: Gaetan Perrot <gaetan.perrot@spacecubics.com>
This commit is contained in:
Gaetan Perrot 2025-07-06 02:03:03 +09:00 committed by Daniel DeGrasse
parent eb7fe02aac
commit 3e9eea2cc1

View File

@ -455,6 +455,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-M */
return -ENOTSUP;
}