aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/intel/Makefile5
-rw-r--r--sound/soc/intel/baytrail/Makefile4
-rw-r--r--sound/soc/intel/baytrail/sst-baytrail-dsp.c (renamed from sound/soc/intel/sst-baytrail-dsp.c)4
-rw-r--r--sound/soc/intel/baytrail/sst-baytrail-ipc.c (renamed from sound/soc/intel/sst-baytrail-ipc.c)4
-rw-r--r--sound/soc/intel/baytrail/sst-baytrail-ipc.h (renamed from sound/soc/intel/sst-baytrail-ipc.h)0
-rw-r--r--sound/soc/intel/baytrail/sst-baytrail-pcm.c (renamed from sound/soc/intel/sst-baytrail-pcm.c)4
6 files changed, 11 insertions, 10 deletions
diff --git a/sound/soc/intel/Makefile b/sound/soc/intel/Makefile
index ac0248f100ff..62de82af6703 100644
--- a/sound/soc/intel/Makefile
+++ b/sound/soc/intel/Makefile
@@ -10,10 +10,7 @@ obj-$(CONFIG_SND_MFLD_MACHINE) += snd-soc-mfld-machine.o
10 10
11# Platform Support 11# Platform Support
12obj-$(CONFIG_SND_SOC_INTEL_HASWELL) += haswell/ 12obj-$(CONFIG_SND_SOC_INTEL_HASWELL) += haswell/
13snd-soc-sst-baytrail-pcm-objs := \ 13obj-$(CONFIG_SND_SOC_INTEL_BAYTRAIL) += baytrail/
14 sst-baytrail-ipc.o sst-baytrail-pcm.o sst-baytrail-dsp.o
15
16obj-$(CONFIG_SND_SOC_INTEL_BAYTRAIL) += snd-soc-sst-baytrail-pcm.o
17 14
18# Machine support 15# Machine support
19obj-$(CONFIG_SND_SOC_INTEL_SST) += boards/ 16obj-$(CONFIG_SND_SOC_INTEL_SST) += boards/
diff --git a/sound/soc/intel/baytrail/Makefile b/sound/soc/intel/baytrail/Makefile
new file mode 100644
index 000000000000..488408cadf6d
--- /dev/null
+++ b/sound/soc/intel/baytrail/Makefile
@@ -0,0 +1,4 @@
1snd-soc-sst-baytrail-pcm-objs := \
2 sst-baytrail-ipc.o sst-baytrail-pcm.o sst-baytrail-dsp.o
3
4obj-$(CONFIG_SND_SOC_INTEL_BAYTRAIL) += snd-soc-sst-baytrail-pcm.o
diff --git a/sound/soc/intel/sst-baytrail-dsp.c b/sound/soc/intel/baytrail/sst-baytrail-dsp.c
index 5a9e56700f31..01d023cc05dd 100644
--- a/sound/soc/intel/sst-baytrail-dsp.c
+++ b/sound/soc/intel/baytrail/sst-baytrail-dsp.c
@@ -22,8 +22,8 @@
22#include <linux/platform_device.h> 22#include <linux/platform_device.h>
23#include <linux/firmware.h> 23#include <linux/firmware.h>
24 24
25#include "sst-dsp.h" 25#include "../common/sst-dsp.h"
26#include "sst-dsp-priv.h" 26#include "../common/sst-dsp-priv.h"
27#include "sst-baytrail-ipc.h" 27#include "sst-baytrail-ipc.h"
28 28
29#define SST_BYT_FW_SIGNATURE_SIZE 4 29#define SST_BYT_FW_SIGNATURE_SIZE 4
diff --git a/sound/soc/intel/sst-baytrail-ipc.c b/sound/soc/intel/baytrail/sst-baytrail-ipc.c
index b4ad98c43e5c..aabb9b0f48b8 100644
--- a/sound/soc/intel/sst-baytrail-ipc.c
+++ b/sound/soc/intel/baytrail/sst-baytrail-ipc.c
@@ -29,8 +29,8 @@
29#include <asm/div64.h> 29#include <asm/div64.h>
30 30
31#include "sst-baytrail-ipc.h" 31#include "sst-baytrail-ipc.h"
32#include "sst-dsp.h" 32#include "../common/sst-dsp.h"
33#include "sst-dsp-priv.h" 33#include "../common/sst-dsp-priv.h"
34 34
35/* IPC message timeout */ 35/* IPC message timeout */
36#define IPC_TIMEOUT_MSECS 300 36#define IPC_TIMEOUT_MSECS 300
diff --git a/sound/soc/intel/sst-baytrail-ipc.h b/sound/soc/intel/baytrail/sst-baytrail-ipc.h
index 8faff6dcf25d..8faff6dcf25d 100644
--- a/sound/soc/intel/sst-baytrail-ipc.h
+++ b/sound/soc/intel/baytrail/sst-baytrail-ipc.h
diff --git a/sound/soc/intel/sst-baytrail-pcm.c b/sound/soc/intel/baytrail/sst-baytrail-pcm.c
index 224c49c9f135..79547bec558b 100644
--- a/sound/soc/intel/sst-baytrail-pcm.c
+++ b/sound/soc/intel/baytrail/sst-baytrail-pcm.c
@@ -20,8 +20,8 @@
20#include <sound/pcm_params.h> 20#include <sound/pcm_params.h>
21#include <sound/soc.h> 21#include <sound/soc.h>
22#include "sst-baytrail-ipc.h" 22#include "sst-baytrail-ipc.h"
23#include "sst-dsp-priv.h" 23#include "../common/sst-dsp-priv.h"
24#include "sst-dsp.h" 24#include "../common/sst-dsp.h"
25 25
26#define BYT_PCM_COUNT 2 26#define BYT_PCM_COUNT 2
27 27