]> Git Repo - linux.git/commitdiff
ASoC: fsl_esai: Remove unused 'imx' field
authorFabio Estevam <[email protected]>
Sat, 6 Feb 2021 14:27:53 +0000 (11:27 -0300)
committerMark Brown <[email protected]>
Mon, 8 Feb 2021 11:39:57 +0000 (11:39 +0000)
The 'imx' field is not used anywhere, so get rid of it.

Signed-off-by: Fabio Estevam <[email protected]>
Acked-by: Shengjiu Wang <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
sound/soc/fsl/fsl_esai.c

index bac9f059c9fc60063c7bf47795b12fdaa92fd7d6..08056fa0a0fa5ff1f5e18db91569224b7958b33f 100644 (file)
 
 /**
  * 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,
 };
 
This page took 0.059053 seconds and 4 git commands to generate.