]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: zte: spdif and i2s drivers are not zx296702 specific
authorShawn Guo <shawn.guo@linaro.org>
Thu, 8 Dec 2016 08:44:14 +0000 (16:44 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 8 Dec 2016 16:08:37 +0000 (16:08 +0000)
ZTE ZX SPDIF and I2S drivers can work on not only ZX296702 but also
other ZTE ZX family SoCs like ZX296718, which is an arm64 platform.
Let's make a few renaming and tweak the Kconfig a bit to get the drivers
available for other ZTE ZX platforms.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Reviewed-by: Jun Nie <jun.nie@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/zte/Kconfig
sound/soc/zte/Makefile
sound/soc/zte/zx-i2s.c [moved from sound/soc/zte/zx296702-i2s.c with 100% similarity]
sound/soc/zte/zx-spdif.c [moved from sound/soc/zte/zx296702-spdif.c with 100% similarity]

index c47eb25e441fed73ded161d3aabc045ae2dac3f4..6d8a90d363150e808620ae1a655e79d4766e08a8 100644 (file)
@@ -1,17 +1,17 @@
-config ZX296702_SPDIF
-       tristate "ZX296702 spdif"
-       depends on SOC_ZX296702 || COMPILE_TEST
+config ZX_SPDIF
+       tristate "ZTE ZX SPDIF Driver Support"
+       depends on ARCH_ZX || COMPILE_TEST
        depends on COMMON_CLK
        select SND_SOC_GENERIC_DMAENGINE_PCM
        help
          Say Y or M if you want to add support for codecs attached to the
-         zx296702 spdif interface
+         ZTE ZX SPDIF interface
 
-config ZX296702_I2S
-       tristate "ZX296702 i2s"
-       depends on SOC_ZX296702 || COMPILE_TEST
+config ZX_I2S
+       tristate "ZTE ZX I2S Driver Support"
+       depends on ARCH_ZX || COMPILE_TEST
        depends on COMMON_CLK
        select SND_SOC_GENERIC_DMAENGINE_PCM
        help
          Say Y or M if you want to add support for codecs attached to the
-         zx296702 i2s interface
+         ZTE ZX I2S interface
index 254ed2c8c1a00f9a5d256a6a7b91456aa5a5dbbc..77768f5fd10c5f7d6c39f801f1e98bf3e88de189 100644 (file)
@@ -1,2 +1,2 @@
-obj-$(CONFIG_ZX296702_SPDIF)   += zx296702-spdif.o
-obj-$(CONFIG_ZX296702_I2S)     += zx296702-i2s.o
+obj-$(CONFIG_ZX_SPDIF) += zx-spdif.o
+obj-$(CONFIG_ZX_I2S)   += zx-i2s.o