From e20182c2fbac2ef296646879bf2b916d68a8b95c Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 22 Jul 2014 15:54:56 -0600 Subject: [PATCH] Rename pcm_decode.h to pcm.h since it will hold more than just decoding definitions. Fix some porting errors like idbg should auddbg, etc. Add wav file header and a few low-level wav utilities. --- configs/sama5d4-ek/src/sam_wm8904.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configs/sama5d4-ek/src/sam_wm8904.c b/configs/sama5d4-ek/src/sam_wm8904.c index 012d33f823c..d10fa38f9c0 100644 --- a/configs/sama5d4-ek/src/sam_wm8904.c +++ b/configs/sama5d4-ek/src/sam_wm8904.c @@ -47,8 +47,8 @@ #include #include +#include #include -#include #include @@ -152,13 +152,13 @@ static int wm8904_attach(FAR const struct wm8904_lower_s *lower, * new handler will called via wm8904_interrupt() when the interrupt occurs. */ - ivdbg("Attaching %p\n", isr); + audvdbg("Attaching %p\n", isr); g_mxtinfo.handler = isr; g_mxtinfo.arg = arg; } else { - ivdbg("Detaching %p\n", g_mxtinfo.handler); + audvdbg("Detaching %p\n", g_mxtinfo.handler); wm8904_enable(lower, false); g_mxtinfo.handler = NULL; g_mxtinfo.arg = NULL;