From 36e70afcb5df14720cd9e55cc0e1c94dc3b097ab Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Fri, 29 May 2020 18:26:20 -0700 Subject: [PATCH] kernel: fix k_object_free() spelling This was supposed to match definitions if dynamic objects are turned on. Signed-off-by: Andrew Boie --- include/kernel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kernel.h b/include/kernel.h index 697c9c1a251..2787174b92a 100644 --- a/include/kernel.h +++ b/include/kernel.h @@ -375,7 +375,7 @@ static inline void *z_impl_k_object_alloc(enum k_objects otype) * * @param obj */ -static inline void k_obj_free(void *obj) +static inline void k_object_free(void *obj) { ARG_UNUSED(obj); }