kernel: fix k_object_free() spelling

This was supposed to match definitions if dynamic objects
are turned on.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2020-05-29 18:26:20 -07:00 committed by Carles Cufí
commit 36e70afcb5

View file

@ -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);
}