diff options
author | Fabio Estevam <festevam@gmail.com> | 2021-02-06 15:27:53 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-02-08 12:39:57 +0100 |
commit | 40bd053bc8e18b68e877bd4cdea1b6938ddf5fdd (patch) | |
tree | 1aea1cd530b197e9123c8db27519d84046d3a12c | |
parent | ASoC: fsl: constify static snd_soc_dai_ops structs (diff) | |
download | linux-40bd053bc8e18b68e877bd4cdea1b6938ddf5fdd.tar.xz linux-40bd053bc8e18b68e877bd4cdea1b6938ddf5fdd.zip |
ASoC: fsl_esai: Remove unused 'imx' field
The 'imx' field is not used anywhere, so get rid of it.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Acked-by: Shengjiu Wang <shengjiu.wang@gmail.com>
Link: https://lore.kernel.org/r/20210206142753.536459-1-festevam@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/fsl/fsl_esai.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sound/soc/fsl/fsl_esai.c b/sound/soc/fsl/fsl_esai.c index bac9f059c9fc..08056fa0a0fa 100644 --- a/sound/soc/fsl/fsl_esai.c +++ b/sound/soc/fsl/fsl_esai.c @@ -23,11 +23,9 @@ /** * struct fsl_esai_soc_data - soc specific data - * @imx: for imx platform * @reset_at_xrun: flags for enable reset operaton */ struct fsl_esai_soc_data { - bool imx; bool reset_at_xrun; }; @@ -86,17 +84,14 @@ struct fsl_esai { }; static struct fsl_esai_soc_data fsl_esai_vf610 = { - .imx = false, .reset_at_xrun = true, }; static struct fsl_esai_soc_data fsl_esai_imx35 = { - .imx = true, .reset_at_xrun = true, }; static struct fsl_esai_soc_data fsl_esai_imx6ull = { - .imx = true, .reset_at_xrun = false, }; |