summaryrefslogtreecommitdiff
path: root/nuttx/graphics
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-31 16:24:24 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-31 16:24:24 -0600
commit229ba49e4c56097c393d2e5fa9e77de80ce55a75 (patch)
tree4842535e4d2e0c4ef983d6be8e33a68c3d74c554 /nuttx/graphics
parent08835af3d68a4ea82ec32a5fe29608a6233eb9d9 (diff)
downloadnuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.tar.gz
nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.tar.bz2
nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.zip
Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency with other naming
Diffstat (limited to 'nuttx/graphics')
-rw-r--r--nuttx/graphics/nxsu/nx_open.c2
-rw-r--r--nuttx/graphics/nxsu/nx_openwindow.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/graphics/nxsu/nx_open.c b/nuttx/graphics/nxsu/nx_open.c
index 0de1159ae..5da6b7ad8 100644
--- a/nuttx/graphics/nxsu/nx_open.c
+++ b/nuttx/graphics/nxsu/nx_open.c
@@ -199,7 +199,7 @@ NXHANDLE nx_open(FAR NX_DRIVERTYPE *dev)
* (if available) for compatibility with the multi-user implementation.
*/
- fe = (FAR struct nxfe_state_s *)kuzalloc(sizeof(struct nxfe_state_s));
+ fe = (FAR struct nxfe_state_s *)kumm_zalloc(sizeof(struct nxfe_state_s));
if (!fe)
{
errno = ENOMEM;
diff --git a/nuttx/graphics/nxsu/nx_openwindow.c b/nuttx/graphics/nxsu/nx_openwindow.c
index 4c4afa35b..cc1f5d38f 100644
--- a/nuttx/graphics/nxsu/nx_openwindow.c
+++ b/nuttx/graphics/nxsu/nx_openwindow.c
@@ -107,7 +107,7 @@ NXWINDOW nx_openwindow(NXHANDLE handle, FAR const struct nx_callback_s *cb,
* available) for compatibility with the multi-user implementation.
*/
- wnd = (FAR struct nxbe_window_s *)kuzalloc(sizeof(struct nxbe_window_s));
+ wnd = (FAR struct nxbe_window_s *)kumm_zalloc(sizeof(struct nxbe_window_s));
if (!wnd)
{
errno = ENOMEM;