diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-03-05 15:30:56 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-03-06 01:03:13 +0100 |
commit | 56cea3f1e7db0ccde9e2ac66df2f920c73c419ef (patch) | |
tree | 20cd2f282a3d479d252d3e23690f09d9412ffab6 /sound/soc/imx/Makefile | |
parent | ASoC: imx: separate imx-pcm bits from imx-ssi driver (diff) | |
download | linux-56cea3f1e7db0ccde9e2ac66df2f920c73c419ef.tar.xz linux-56cea3f1e7db0ccde9e2ac66df2f920c73c419ef.zip |
ASoC: imx: add an explicit Kconfig option for imx-ssi driver
Currently ASoC:imx uses menuconfig option SND_IMX_SOC selects imx-ssi
driver, and it works because all the machine driver covered by the
menuconfig need to build imx-ssi driver in. However, it will not work
any more if we have a imx based machine driver going into the menuconfig
while working with fsl_ssi driver (sound/soc/fsl/fsl_ssi.c) rather than
imx-ssi one.
The patch adds an explicit Kconfig option SND_SOC_IMX_SSI for imx-ssi
driver, so that it can be selected independently from the menuconfig
option SND_IMX_SOC.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/imx/Makefile')
-rw-r--r-- | sound/soc/imx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/imx/Makefile b/sound/soc/imx/Makefile index e9ed362636e8..f5db3e92d0d1 100644 --- a/sound/soc/imx/Makefile +++ b/sound/soc/imx/Makefile @@ -1,8 +1,8 @@ # i.MX Platform Support -snd-soc-imx-objs := imx-ssi.o +snd-soc-imx-ssi-objs := imx-ssi.o snd-soc-imx-audmux-objs := imx-audmux.o -obj-$(CONFIG_SND_IMX_SOC) += snd-soc-imx.o +obj-$(CONFIG_SND_SOC_IMX_SSI) += snd-soc-imx-ssi.o obj-$(CONFIG_SND_SOC_IMX_AUDMUX) += snd-soc-imx-audmux.o obj-$(CONFIG_SND_SOC_IMX_PCM) += snd-soc-imx-pcm.o |