[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150428042032.GA178194@athens>
Date: Tue, 28 Apr 2015 12:20:32 +0800
From: kbuild test robot <fengguang.wu@...el.com>
To: Lars-Peter Clausen <lars@...afoo.de>
Cc: kbuild-all@...org, Mark Brown <broonie@...nel.org>,
Liam Girdwood <lgirdwood@...il.com>,
Jaroslav Kysela <perex@...ex.cz>, Takashi Iwai <tiwai@...e.de>,
alsa-devel@...a-project.org, linux-kernel@...r.kernel.org
Subject: [PATCH] ASoC: fix simple_return.cocci warnings
sound/soc/codecs/adau1977.c:496:5-8: WARNING: end returns can be simpified
Simplify a trivial if-return sequence. Possibly combine with a
preceding function call.
Generated by: scripts/coccinelle/misc/simple_return.cocci
CC: Lars-Peter Clausen <lars@...afoo.de>
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---
adau1977.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
--- a/sound/soc/codecs/adau1977.c
+++ b/sound/soc/codecs/adau1977.c
@@ -493,10 +493,7 @@ static int adau1977_set_bias_level(struc
break;
}
- if (ret)
- return ret;
-
- return 0;
+ return ret;
}
static int adau1977_set_tdm_slot(struct snd_soc_dai *dai, unsigned int tx_mask,
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists