diff options
author | Markus Pargmann <mpa@pengutronix.de> | 2014-04-28 12:54:43 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-05-21 00:02:26 +0200 |
commit | f138e6212427d0ea6283e07b706823b657ddf14f (patch) | |
tree | aaddfdb38e47b479a96cb9004736cefa226f2429 /sound/soc/fsl/Makefile | |
parent | ASoC: fsl-ssi: Fix register values when disabling (diff) | |
download | linux-f138e6212427d0ea6283e07b706823b657ddf14f.tar.xz linux-f138e6212427d0ea6283e07b706823b657ddf14f.zip |
ASoC: fsl-ssi: Move debugging to seperate file
Move all code that is only used for debugging to a seperate file. This
makes it easier to see what functions are used for debugging only.
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Tested-By: Michael Grzeschik <mgr@pengutronix.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/fsl/Makefile')
-rw-r--r-- | sound/soc/fsl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/fsl/Makefile b/sound/soc/fsl/Makefile index b12ad4b9b4da..db254e358c18 100644 --- a/sound/soc/fsl/Makefile +++ b/sound/soc/fsl/Makefile @@ -12,7 +12,8 @@ obj-$(CONFIG_SND_SOC_P1022_RDK) += snd-soc-p1022-rdk.o # Freescale SSI/DMA/SAI/SPDIF Support snd-soc-fsl-sai-objs := fsl_sai.o -snd-soc-fsl-ssi-objs := fsl_ssi.o +snd-soc-fsl-ssi-y := fsl_ssi.o +snd-soc-fsl-ssi-$(CONFIG_DEBUG_FS) += fsl_ssi_dbg.o snd-soc-fsl-spdif-objs := fsl_spdif.o snd-soc-fsl-esai-objs := fsl_esai.o snd-soc-fsl-utils-objs := fsl_utils.o |