aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2016-11-05 19:16:32 -0400
committerMark Brown <broonie@kernel.org>2016-11-09 09:44:43 -0500
commitb3af6d3f966a86cc556f5048fe6fff4e8cf567bc (patch)
treee7a90f61649cebe5ab1c42515b1975b80b74ee24
parente1b790a8720192e1cfdd46a9b20d0f56de99c73d (diff)
ASoC: fsl: fix fsl_spdif.c build errors
Fix build errors in sound/soc/fsl/fsl_spdif.c by selecting BITREVERSE. Fixes these build errors: sound/built-in.o: In function `spdif_write_channel_status': fsl_spdif.c:(.text+0xbe39d): undefined reference to `byte_rev_table' fsl_spdif.c:(.text+0xbe3a8): undefined reference to `byte_rev_table' fsl_spdif.c:(.text+0xbe3be): undefined reference to `byte_rev_table' fsl_spdif.c:(.text+0xbe3d8): undefined reference to `byte_rev_table' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Reported-by: kbuild test robot <fengguang.wu@intel.com> Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/fsl/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig
index 19bdcac71775..37f9b6201918 100644
--- a/sound/soc/fsl/Kconfig
+++ b/sound/soc/fsl/Kconfig
@@ -40,6 +40,7 @@ config SND_SOC_FSL_SPDIF
40 select REGMAP_MMIO 40 select REGMAP_MMIO
41 select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n 41 select SND_SOC_IMX_PCM_DMA if SND_IMX_SOC != n
42 select SND_SOC_IMX_PCM_FIQ if SND_IMX_SOC != n && (MXC_TZIC || MXC_AVIC) 42 select SND_SOC_IMX_PCM_FIQ if SND_IMX_SOC != n && (MXC_TZIC || MXC_AVIC)
43 select BITREVERSE
43 help 44 help
44 Say Y if you want to add Sony/Philips Digital Interface (SPDIF) 45 Say Y if you want to add Sony/Philips Digital Interface (SPDIF)
45 support for the Freescale CPUs. 46 support for the Freescale CPUs.