From: "Katsuhiro Suzuki" <suzuki.katsuhiro@socionext.com>
To: "'Mark Brown'" <broonie@kernel.org>,
"Suzuki, Katsuhiro/鈴木 勝博" <suzuki.katsuhiro@socionext.com>
Cc: devicetree@vger.kernel.org, alsa-devel@alsa-project.org,
Masami Hiramatsu <masami.hiramatsu@linaro.org>,
linux-kernel@vger.kernel.org,
Jassi Brar <jaswinder.singh@linaro.org>,
Rob Herring <robh+dt@kernel.org>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 2/2] ASoC: support ROHM BD28623 codec
Date: Wed, 21 Feb 2018 22:15:52 +0900 [thread overview]
Message-ID: <002601d3ab16$195fdf20$4c1f9d60$@socionext.com> (raw)
In-Reply-To: <20180221122639.GH8334@sirena.org.uk>
Hello Mark,
> -----Original Message-----
> From: Mark Brown [mailto:broonie@kernel.org]
> Sent: Wednesday, February 21, 2018 9:27 PM
> To: Suzuki, Katsuhiro <suzuki.katsuhiro@socionext.com>
> Cc: alsa-devel@alsa-project.org; Rob Herring <robh+dt@kernel.org>; devicetree@vger.kernel.org; Masami Hiramatsu
> <masami.hiramatsu@linaro.org>; Jassi Brar <jaswinder.singh@linaro.org>; linux-arm-kernel@lists.infradead.org;
> linux-kernel@vger.kernel.org
> Subject: Re: [PATCH 2/2] ASoC: support ROHM BD28623 codec
>
> On Wed, Feb 21, 2018 at 01:33:11PM +0900, Katsuhiro Suzuki wrote:
>
> > +++ b/sound/soc/codecs/bd28623.c
> > @@ -0,0 +1,258 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > +/*
> > + * ROHM BD28623MUV class D speaker amplifier codec driver.
> > + *
>
> Please make the entire comment C++ so this looks intentional.
>
> > + dev_err(dev, "Failed to enable supplies: %d\n", ret);
> > + return ret;
> > + }
> > +
> > + gpiod_set_value(bd->reset_gpio, 0);
>
> Since this GPIO is not needed in atomic contexts you should use the
> _cansleep() versions of the GPIO functions - it doesn't cost you
> anything and means that if for some reason someone wired this up to a
> GPIO that can't be used in atomic context the driver will just work.
>
Thank you, I'll fix it.
> > + bd->reset_gpio = devm_gpiod_get_optional(dev, "reset",
> > + GPIOD_OUT_HIGH);
>
> > + bd->mute_gpio = devm_gpiod_get_optional(dev, "mute",
> > + GPIOD_OUT_HIGH);
>
> These properties were documented as mandatory in the binding but are
> optional here. It's fine that they're optional but I'd expect the
> binding to be consistent with this.
>
These GPIO is optional if board vendor connects directly RSTX and MUTEX pins
to VCC. So I think I should fix DT-bindings document.
> > +static int bd28623_remove(struct platform_device *pdev)
> > +{
> > + struct bd28623_priv *bd = platform_get_drvdata(pdev);
> > +
> > + regulator_bulk_disable(ARRAY_SIZE(bd->supplies), bd->supplies);
> > +
> > + return 0;
> > +}
>
> We don't enable the supplies explicitly as part of the probe function so
> it feels wrong to disable on remove() - I'm sure it is fine in practice
> as-is but I'd have to think too hard to confirm that. I'd put this in a
> component level remove function instead so that it's consistent.
Ah, indeed. I will use component driver's remove() function instead of platform.
Thank you for review!
Regards,
--
Katsuhiro Suzuki
prev parent reply other threads:[~2018-02-21 13:15 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-21 4:33 [PATCH 0/2] ASoC: add support for ROHM BD28623 codec Katsuhiro Suzuki
2018-02-21 4:33 ` [PATCH 1/2] ASoC: add DT bindings documentation " Katsuhiro Suzuki
2018-02-21 12:13 ` Mark Brown
2018-02-21 12:26 ` Katsuhiro Suzuki
2018-02-21 4:33 ` [PATCH 2/2] ASoC: support " Katsuhiro Suzuki
2018-02-21 12:26 ` Mark Brown
2018-02-21 13:15 ` Katsuhiro Suzuki [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='002601d3ab16$195fdf20$4c1f9d60$@socionext.com' \
--to=suzuki.katsuhiro@socionext.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jaswinder.singh@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=masami.hiramatsu@linaro.org \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).