diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2010-10-12 11:39:50 +0900 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-10-12 11:02:45 +0100 |
commit | a68a3b4ed4ecafcf80f4272e8e1f0670b387041e (patch) | |
tree | 6413303d7a9c606a7d3d3e0631c5b4d31d307884 /sound/soc/sh/fsi.c | |
parent | cca1b2353a364fd51619d0f304dd9681282b864c (diff) |
ASoC: fsi: remove un-necessary variable from fsi_dai_startup
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/sh/fsi.c')
-rw-r--r-- | sound/soc/sh/fsi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index aa2cbb1ea98..d68dcbb8dc1 100644 --- a/sound/soc/sh/fsi.c +++ b/sound/soc/sh/fsi.c @@ -730,7 +730,6 @@ static int fsi_dai_startup(struct snd_pcm_substream *substream, u32 data; int is_play = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK); int is_master; - int ret = 0; pm_runtime_get_sync(dai->dev); @@ -809,7 +808,7 @@ static int fsi_dai_startup(struct snd_pcm_substream *substream, /* fifo init */ fsi_fifo_init(fsi, is_play, dai); - return ret; + return 0; } static void fsi_dai_shutdown(struct snd_pcm_substream *substream, |