Message ID | 20221215093615.3794156-1-lukma@denx.de (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v2,1/3] ASoC: wm8940: Remove warning when no plat data present | expand |
On Thu, Dec 15, 2022 at 10:36:13AM +0100, Lukasz Majewski wrote: > The lack of platform data in the contemporary Linux > shall not be the reason to display warnings to the > kernel logs. Please don't send new patches in reply to old patches or serieses, this makes it harder for both people and tools to understand what is going on - it can bury things in mailboxes and make it difficult to keep track of what current patches are, both for the new patches and the old ones.
Hi Mark, > On Thu, Dec 15, 2022 at 10:36:13AM +0100, Lukasz Majewski wrote: > > The lack of platform data in the contemporary Linux > > shall not be the reason to display warnings to the > > kernel logs. > > Please don't send new patches in reply to old patches or serieses, > this makes it harder for both people and tools to understand what is > going on - it can bury things in mailboxes and make it difficult to > keep track of what current patches are, both for the new patches and > the old ones. Ok. I will not use --in-reply-to. Best regards, Lukasz Majewski -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de
diff --git a/sound/soc/codecs/wm8940.c b/sound/soc/codecs/wm8940.c index 8dac9fd88547..0b59020d747f 100644 --- a/sound/soc/codecs/wm8940.c +++ b/sound/soc/codecs/wm8940.c @@ -709,9 +709,7 @@ static int wm8940_probe(struct snd_soc_component *component) if (ret < 0) return ret; - if (!pdata) - dev_warn(component->dev, "No platform data supplied\n"); - else { + if (pdata) { reg = snd_soc_component_read(component, WM8940_OUTPUTCTL); ret = snd_soc_component_write(component, WM8940_OUTPUTCTL, reg | pdata->vroi); if (ret < 0)