From 683abd77d276e806911a28241d956619d270930d Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Tue, 14 Apr 2020 02:13:16 -0400 Subject: [PATCH] Fix checkwps build for dx50 & dx90 targets Their codec headers weren't in the right place. Change-Id: Iae16c10defc937cc227afd8992ff45cd6d664898 --- firmware/export/audiohw.h | 4 ++-- firmware/{target/hosted/ibasso/dx50 => export}/codec-dx50.h | 0 firmware/{target/hosted/ibasso/dx90 => export}/codec-dx90.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename firmware/{target/hosted/ibasso/dx50 => export}/codec-dx50.h (100%) rename firmware/{target/hosted/ibasso/dx90 => export}/codec-dx90.h (100%) diff --git a/firmware/export/audiohw.h b/firmware/export/audiohw.h index 00bb15812d..f22e72554d 100644 --- a/firmware/export/audiohw.h +++ b/firmware/export/audiohw.h @@ -215,7 +215,7 @@ struct sound_settings_info #include "cs4398.h" #elif defined(HAVE_ES9018) #include "es9018.h" -#elif (CONFIG_PLATFORM & (PLATFORM_ANDROID | PLATFORM_MAEMO\ +#elif (CONFIG_PLATFORM & (PLATFORM_ANDROID | PLATFORM_MAEMO \ | PLATFORM_PANDORA | PLATFORM_SDL)) #include "hosted_codec.h" #elif defined(DX50) @@ -644,7 +644,7 @@ void audiohw_set_pitch(int32_t val); /** * Return the set pitch ratio - */ + */ int32_t audiohw_get_pitch(void); #endif /* HAVE_PITCHCONTROL */ diff --git a/firmware/target/hosted/ibasso/dx50/codec-dx50.h b/firmware/export/codec-dx50.h similarity index 100% rename from firmware/target/hosted/ibasso/dx50/codec-dx50.h rename to firmware/export/codec-dx50.h diff --git a/firmware/target/hosted/ibasso/dx90/codec-dx90.h b/firmware/export/codec-dx90.h similarity index 100% rename from firmware/target/hosted/ibasso/dx90/codec-dx90.h rename to firmware/export/codec-dx90.h