diff options
author | Alin Grigorean <alin.grig93@gmail.com> | 2017-02-25 13:47:26 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-03-08 13:11:51 +0300 |
commit | cb7d53b499f95febd4b5bc80a473706c717d5d2c (patch) | |
tree | bf7e93c0ed63b427127ba7b5eea80f8e27a3d055 /sound/soc/fsl/imx-pcm-fiq.c | |
parent | c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201 (diff) | |
download | linux-cb7d53b499f95febd4b5bc80a473706c717d5d2c.tar.xz |
ASoC: fsl: Remove unneeded init of static variable
This was reported by checkpatch.pl
Signed-off-by: Alin Grigorean <alin.grig93@gmail.com>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl/imx-pcm-fiq.c')
-rw-r--r-- | sound/soc/fsl/imx-pcm-fiq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/fsl/imx-pcm-fiq.c b/sound/soc/fsl/imx-pcm-fiq.c index dac6688540dc..92410f7ca1fa 100644 --- a/sound/soc/fsl/imx-pcm-fiq.c +++ b/sound/soc/fsl/imx-pcm-fiq.c @@ -282,7 +282,7 @@ static int imx_pcm_new(struct snd_soc_pcm_runtime *rtd) return 0; } -static int ssi_irq = 0; +static int ssi_irq; static int imx_pcm_fiq_new(struct snd_soc_pcm_runtime *rtd) { |