[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YffG6JKmGCS1/h08@smile.fi.intel.com>
Date: Mon, 31 Jan 2022 13:24:24 +0200
From: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
To: Christophe JAILLET <christophe.jaillet@...adoo.fr>
Cc: Hans de Goede <hdegoede@...hat.com>,
Mark Gross <markgross@...nel.org>,
Maximilian Luz <luzmaximilian@...il.com>,
Benjamin Tissoires <benjamin.tissoires@...hat.com>,
linux-kernel@...r.kernel.org, kernel-janitors@...r.kernel.org,
platform-driver-x86@...r.kernel.org
Subject: Re: [PATCH] surface: surface3-wmi: Simplify resource management
On Sun, Jan 30, 2022 at 09:36:54AM +0100, Christophe JAILLET wrote:
> 's3_wmi.input' is a managed resource, so there should be no need to free it
> explicitly.
>
> Moreover, 's3_wmi' is a global variable. 's3_wmi.input' should be NULL
> when this error handling path is executed, because it has not been
> assigned yet.
>
> All this is puzzling. So simplify it and remove a few lines of code to have
> it be more straightforward.
Seems correct cleanup / fix to me
Reviewed-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
> Fixes: 3dda3b3798f9 ("platform/x86: Add custom surface3 platform device for controlling LID")
> Signed-off-by: Christophe JAILLET <christophe.jaillet@...adoo.fr>
> ---
> Compile tested only
> ---
> drivers/platform/surface/surface3-wmi.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/platform/surface/surface3-wmi.c b/drivers/platform/surface/surface3-wmi.c
> index 09ac9cfc40d8..b9a4b2d81f4b 100644
> --- a/drivers/platform/surface/surface3-wmi.c
> +++ b/drivers/platform/surface/surface3-wmi.c
> @@ -190,14 +190,11 @@ static int s3_wmi_create_and_register_input(struct platform_device *pdev)
>
> error = input_register_device(input);
> if (error)
> - goto out_err;
> + return error;
>
> s3_wmi.input = input;
>
> return 0;
> - out_err:
> - input_free_device(s3_wmi.input);
> - return error;
> }
>
> static int __init s3_wmi_probe(struct platform_device *pdev)
> --
> 2.32.0
>
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists