mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: linux-tip-commits@vger.kernel.org,
	Yang Yingliang <yangyingliang@huawei.com>,
	x86@kernel.org
Subject: Re: [tip: sched/psi] class: use IS_ERR_OR_NULL() helper in class_unregister()
Date: Fri, 9 Sep 2022 20:08:40 +0200	[thread overview]
Message-ID: <YxuBKKe1CVw7RWlc@kroah.com> (raw)
In-Reply-To: <166273202287.401.13504362798914698931.tip-bot2@tip-bot2>

On Fri, Sep 09, 2022 at 02:00:22PM -0000, tip-bot2 for Yang Yingliang wrote:
> The following commit has been merged into the sched/psi branch of tip:
> 
> Commit-ID:     e9628e015fe205f10766f031f17e217f85650570
> Gitweb:        https://git.kernel.org/tip/e9628e015fe205f10766f031f17e217f85650570
> Author:        Yang Yingliang <yangyingliang@huawei.com>
> AuthorDate:    Mon, 22 Aug 2022 14:19:22 +08:00
> Committer:     Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> CommitterDate: Thu, 01 Sep 2022 18:15:40 +02:00
> 
> class: use IS_ERR_OR_NULL() helper in class_unregister()
> 
> Use IS_ERR_OR_NULL() helper in class_unregister() to simplify code.
> 
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> Link: https://lore.kernel.org/r/20220822061922.3884113-1-yangyingliang@huawei.com
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
>  drivers/base/class.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/base/class.c b/drivers/base/class.c
> index 8feb85e..64f7b9a 100644
> --- a/drivers/base/class.c
> +++ b/drivers/base/class.c
> @@ -260,7 +260,7 @@ EXPORT_SYMBOL_GPL(__class_create);
>   */
>  void class_destroy(struct class *cls)
>  {
> -	if ((cls == NULL) || (IS_ERR(cls)))
> +	if (IS_ERR_OR_NULL(cls))
>  		return;
>  
>  	class_unregister(cls);

Any specific reason you pulled in my driver-core branch into tip?

confused,

greg k-h

      reply	other threads:[~2022-09-09 18:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-22  6:19 [PATCH -next] " Yang Yingliang
2022-09-09 14:00 ` [tip: sched/psi] " tip-bot2 for Yang Yingliang
2022-09-09 18:08   ` Greg Kroah-Hartman [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=YxuBKKe1CVw7RWlc@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=x86@kernel.org \
    --cc=yangyingliang@huawei.com \
    /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

all inboxes | Powered by JetHome®