summaryrefslogtreecommitdiff
path: root/nuttx/audio
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/audio
parent08835af3d68a4ea82ec32a5fe29608a6233eb9d9 (diff)
downloadpx4-nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.tar.gz
px4-nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.tar.bz2
px4-nuttx-229ba49e4c56097c393d2e5fa9e77de80ce55a75.zip
Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency with other naming
Diffstat (limited to 'nuttx/audio')
-rw-r--r--nuttx/audio/audio.c2
-rw-r--r--nuttx/audio/pcm_decode.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/audio/audio.c b/nuttx/audio/audio.c
index 252531677..3f0c9ebfb 100644
--- a/nuttx/audio/audio.c
+++ b/nuttx/audio/audio.c
@@ -530,7 +530,7 @@ static int audio_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
}
else
{
- /* Perform a simple kumalloc operation assuming 1 session */
+ /* Perform a simple kumm_malloc operation assuming 1 session */
ret = apb_alloc(bufdesc);
}
diff --git a/nuttx/audio/pcm_decode.c b/nuttx/audio/pcm_decode.c
index b2109923c..f15f63a88 100644
--- a/nuttx/audio/pcm_decode.c
+++ b/nuttx/audio/pcm_decode.c
@@ -949,7 +949,7 @@ static int pcm_resume(FAR struct audio_lowerhalf_s *dev)
* lower-half driver with the opportunity to perform special buffer
* allocation if needed, such as allocating from a specific memory
* region (DMA-able, etc.). If not supplied, then the top-half
- * driver will perform a standard kumalloc using normal user-space
+ * driver will perform a standard kumm_malloc using normal user-space
* memory region.
*
****************************************************************************/