Commit a43b4394 authored by Cezary Rojewski's avatar Cezary Rojewski Committed by Mark Brown

ASoC: codecs: rt274: Always init jack_detect_work

Improves readability by making sure the work is always initialized.
Signed-off-by: default avatarCezary Rojewski <cezary.rojewski@intel.com>
Signed-off-by: default avatarAmadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Link: https://lore.kernel.org/r/20220609133541.3984886-2-amadeuszx.slawinski@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 142d4562
......@@ -980,14 +980,11 @@ static int rt274_probe(struct snd_soc_component *component)
struct rt274_priv *rt274 = snd_soc_component_get_drvdata(component);
rt274->component = component;
INIT_DELAYED_WORK(&rt274->jack_detect_work, rt274_jack_detect_work);
if (rt274->i2c->irq) {
INIT_DELAYED_WORK(&rt274->jack_detect_work,
rt274_jack_detect_work);
if (rt274->i2c->irq)
schedule_delayed_work(&rt274->jack_detect_work,
msecs_to_jiffies(1250));
}
msecs_to_jiffies(1250));
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment