diff options
author | Jin Yao <yao.jin@linux.intel.com> | 2015-04-07 04:33:30 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-04-10 21:00:37 +0300 |
commit | a33c1ec5cf82efb76f0e7339b13f11cfb53a2a2f (patch) | |
tree | 55d65260a66476cf556ba71a58a14f77aea7ccef /sound/soc/intel/common/Makefile | |
parent | 75afbd052b3675e9b812f9327e19be63f3e7b5de (diff) | |
download | linux-a33c1ec5cf82efb76f0e7339b13f11cfb53a2a2f.tar.xz |
ASoC: Intel: Refactor common IPC/mailbox code into generic APIs
Currently in Intel SST driver, some similar IPC/mailbox processing
code are used in different platforms (e.g. in baytrail/broadwell).
This patch extracts the common code and creates new files
(sst-ipc.c/sst-ipc.h) to contain the common code and provide the generic
APIs for IPC/mailbox processing.
Signed-off-by: Jin Yao <yao.jin@linux.intel.com>
Acked-by: Jie Yang <yang.jie@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/common/Makefile')
-rw-r--r-- | sound/soc/intel/common/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/intel/common/Makefile b/sound/soc/intel/common/Makefile index 3df0e1ca76c0..f24154ca4e98 100644 --- a/sound/soc/intel/common/Makefile +++ b/sound/soc/intel/common/Makefile @@ -1,6 +1,7 @@ snd-soc-sst-dsp-objs := sst-dsp.o sst-firmware.o snd-soc-sst-acpi-objs := sst-acpi.o +snd-soc-sst-ipc-objs := sst-ipc.o -obj-$(CONFIG_SND_SOC_INTEL_SST) += snd-soc-sst-dsp.o +obj-$(CONFIG_SND_SOC_INTEL_SST) += snd-soc-sst-dsp.o snd-soc-sst-ipc.o obj-$(CONFIG_SND_SOC_INTEL_SST_ACPI) += snd-soc-sst-acpi.o |