mirror of
https://github.com/apache/nuttx.git
synced 2026-09-27 18:58:27 +08:00
Rename kfree to kmm_free for consistency with other naming conventions
This commit is contained in:
@@ -851,7 +851,7 @@ FAR void *composite_initialize(void)
|
||||
return (FAR void *)alloc;
|
||||
|
||||
errout_with_alloc:
|
||||
kfree(alloc);
|
||||
kmm_free(alloc);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -901,7 +901,7 @@ void composite_uninitialize(FAR void *handle)
|
||||
|
||||
/* Then free the composite driver state structure itself */
|
||||
|
||||
kfree(priv);
|
||||
kmm_free(priv);
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
||||
Reference in New Issue
Block a user