mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
ASoC: codecs: mt6359-accdet: remove useless initialization
cppcheck warning
sound/soc/codecs/mt6359-accdet.c:417:10: style: Variable 'ret' is
assigned a value that is never used. [unreadVariable]
int ret = 0;
^
sound/soc/codecs/mt6359-accdet.c:464:10: style: Variable 'ret' is
assigned a value that is never used. [unreadVariable]
int ret = 0;
^
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20210426214701.235106-2-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
3f0d23e849
commit
b76d1d86a4
|
|
@ -414,7 +414,7 @@ static void mt6359_accdet_work(struct work_struct *work)
|
|||
|
||||
static void mt6359_accdet_jd_work(struct work_struct *work)
|
||||
{
|
||||
int ret = 0;
|
||||
int ret;
|
||||
unsigned int value = 0;
|
||||
|
||||
struct mt6359_accdet *priv =
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user