From: Johan Hovold <johan@kernel.org>
To: cgel.zte@gmail.com
Cc: elder@kernel.org, gregkh@linuxfoundation.org,
greybus-dev@lists.linaro.org, linux-kernel@vger.kernel.org,
Minghao Chi <chi.minghao@zte.com.cn>,
Zeal Robot <zealci@zte.com.cn>
Subject: Re: [PATCH] greybus: using pm_runtime_resume_and_get to simplify the code
Date: Wed, 20 Apr 2022 10:01:39 +0200 [thread overview]
Message-ID: <Yl+948unOoDFdLe2@hovoldconsulting.com> (raw)
In-Reply-To: <20220420030658.2575942-1-chi.minghao@zte.com.cn>
On Wed, Apr 20, 2022 at 03:06:58AM +0000, cgel.zte@gmail.com wrote:
> From: Minghao Chi <chi.minghao@zte.com.cn>
Why are you sending patches from a random non-personal gmail address?
> Using pm_runtime_resume_and_get() to replace pm_runtime_get_sync and
> pm_runtime_put_noidle. This change is just to simplify the code, no
> actual functional changes.
>
> Reported-by: Zeal Robot <zealci@zte.com.cn>
And why is this here?
> Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
> ---
> drivers/greybus/core.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/greybus/core.c b/drivers/greybus/core.c
> index e546c6431877..434aa5d9dd47 100644
> --- a/drivers/greybus/core.c
> +++ b/drivers/greybus/core.c
> @@ -174,11 +174,9 @@ static int greybus_probe(struct device *dev)
> if (!id)
> return -ENODEV;
>
> - retval = pm_runtime_get_sync(&bundle->intf->dev);
> - if (retval < 0) {
> - pm_runtime_put_noidle(&bundle->intf->dev);
> + retval = pm_runtime_resume_and_get(&bundle->intf->dev);
> + if (retval < 0)
> return retval;
> - }
NAK.
Greybus is using the pm_runtime_get_sync() consistently and mixing it up
with the new helper that uses a different naming scheme is just
confusing.
Use the new helper for your own code if you prefer, but there's really
no need to go around submitting this automatic conversions for code
that's already in the tree.
> retval = gb_control_bundle_activate(bundle->intf->control, bundle->id);
> if (retval) {
Johan
prev parent reply other threads:[~2022-04-20 8:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-20 3:06 cgel.zte
2022-04-20 8:01 ` Johan Hovold [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=Yl+948unOoDFdLe2@hovoldconsulting.com \
--to=johan@kernel.org \
--cc=cgel.zte@gmail.com \
--cc=chi.minghao@zte.com.cn \
--cc=elder@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=greybus-dev@lists.linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=zealci@zte.com.cn \
/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
Powered by JetHome