mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Chanwoo Choi <cwchoi00@gmail.com>
To: Bumwoo Lee <bw365.lee@samsung.com>,
	MyungJoo Ham <myungjoo.ham@samsung.com>,
	Chanwoo Choi <cw00.choi@samsung.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 1/4] extcon: Removed redundant null checking for class
Date: Mon, 13 Mar 2023 20:03:07 +0900	[thread overview]
Message-ID: <1da3c396-ffce-0473-aedb-a290d707fb19@gmail.com> (raw)
In-Reply-To: <20230302090143.46678-2-bw365.lee@samsung.com>

On 23. 3. 2. 18:01, Bumwoo Lee wrote:
> create_extcon_class() is already Null checking.
> 
> Signed-off-by: Bumwoo Lee <bw365.lee@samsung.com>
> ---
>  drivers/extcon/extcon.c | 21 ++++++++++-----------
>  1 file changed, 10 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/extcon/extcon.c b/drivers/extcon/extcon.c
> index e1c71359b605..adcf01132f70 100644
> --- a/drivers/extcon/extcon.c
> +++ b/drivers/extcon/extcon.c
> @@ -1012,12 +1012,13 @@ ATTRIBUTE_GROUPS(extcon);
>  
>  static int create_extcon_class(void)
>  {
> -	if (!extcon_class) {
> -		extcon_class = class_create(THIS_MODULE, "extcon");
> -		if (IS_ERR(extcon_class))
> -			return PTR_ERR(extcon_class);
> -		extcon_class->dev_groups = extcon_groups;
> -	}
> +	if (extcon_class)
> +		return 0;
> +
> +	extcon_class = class_create(THIS_MODULE, "extcon");
> +	if (IS_ERR(extcon_class))
> +		return PTR_ERR(extcon_class);
> +	extcon_class->dev_groups = extcon_groups;
>  
>  	return 0;
>  }
> @@ -1088,11 +1089,9 @@ int extcon_dev_register(struct extcon_dev *edev)
>  	int ret, index = 0;
>  	static atomic_t edev_no = ATOMIC_INIT(-1);
>  
> -	if (!extcon_class) {
> -		ret = create_extcon_class();
> -		if (ret < 0)
> -			return ret;
> -	}
> +	ret = create_extcon_class();
> +	if (ret < 0)
> +		return ret;
>  
>  	if (!edev || !edev->supported_cable)
>  		return -EINVAL;


Applied it with following edited title:
On later, please write the patch title in command form.

extcon: Remove redundant null checking for class

-- 
Best Regards,
Samsung Electronics
Chanwoo Choi


  reply	other threads:[~2023-03-13 11:03 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20230302090149epcas1p18924c1d17c91f6ecad2049e46b0b1e33@epcas1p1.samsung.com>
2023-03-02  9:01 ` [PATCH v4 0/4] Simplify extcon_dev_register function Bumwoo Lee
     [not found]   ` <CGME20230302090149epcas1p35d6a66bf8b29ef159ecee93441560c58@epcas1p3.samsung.com>
2023-03-02  9:01     ` [PATCH v4 1/4] extcon: Removed redundant null checking for class Bumwoo Lee
2023-03-13 11:03       ` Chanwoo Choi [this message]
     [not found]   ` <CGME20230302090149epcas1p2bad39de9aa367644cda3ffcb4dd4a612@epcas1p2.samsung.com>
2023-03-02  9:01     ` [PATCH v4 2/4] extcon: Added extcon_alloc_cables to simplify extcon register function Bumwoo Lee
2023-03-13 11:06       ` Chanwoo Choi
2023-03-13 11:07         ` Chanwoo Choi
     [not found]   ` <CGME20230302090149epcas1p31a7f99d83947be1d6f06141b352ce041@epcas1p3.samsung.com>
2023-03-02  9:01     ` [PATCH v4 3/4] extcon: Added extcon_alloc_muex " Bumwoo Lee
2023-03-13 11:08       ` Chanwoo Choi
     [not found]   ` <CGME20230302090149epcas1p33a5cd34ed350301b547c2ac3914569d4@epcas1p3.samsung.com>
2023-03-02  9:01     ` [PATCH v4 4/4] extcon: Added extcon_alloc_groups " Bumwoo Lee
2023-03-13 11:08       ` Chanwoo Choi
2023-03-20  3:12         ` Bumwoo Lee
     [not found]   ` <CGME20230302090149epcas1p35d6a66bf8b29ef159ecee93441560c58@epcms1p7>
2023-03-08  6:55     ` [PATCH v4 1/4] extcon: Removed redundant null checking for class MyungJoo Ham

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=1da3c396-ffce-0473-aedb-a290d707fb19@gmail.com \
    --to=cwchoi00@gmail.com \
    --cc=bw365.lee@samsung.com \
    --cc=cw00.choi@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=myungjoo.ham@samsung.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®