2023-12-21 03:14:10

by Dmitry Torokhov

[permalink] [raw]
Subject: [PATCH] Input: da9063_onkey - avoid explicitly setting input's parent

devm_input_allocate_device() already sets parent of the new input
device, there's no need to set it up explicitly.

Signed-off-by: Dmitry Torokhov <[email protected]>
---
drivers/input/misc/da9063_onkey.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/input/misc/da9063_onkey.c b/drivers/input/misc/da9063_onkey.c
index ce499c28a7b2..c338765e0ecd 100644
--- a/drivers/input/misc/da9063_onkey.c
+++ b/drivers/input/misc/da9063_onkey.c
@@ -211,7 +211,6 @@ static int da9063_onkey_probe(struct platform_device *pdev)
snprintf(onkey->phys, sizeof(onkey->phys), "%s/input0",
onkey->config->name);
onkey->input->phys = onkey->phys;
- onkey->input->dev.parent = &pdev->dev;

input_set_capability(onkey->input, EV_KEY, KEY_POWER);

--
2.43.0.195.gebba966016-goog


--
Dmitry


2024-01-04 19:11:12

by Biju Das

[permalink] [raw]
Subject: RE: [PATCH] Input: da9063_onkey - avoid explicitly setting input's parent

Hi Dmitry Torokhov,

Thanks for the patch.

> -----Original Message-----
> From: Dmitry Torokhov <[email protected]>
> Sent: Thursday, December 21, 2023 3:10 AM
> To: Support Opensource <[email protected]>; Biju Das
> <[email protected]>
> Cc: [email protected]; [email protected]
> Subject: [PATCH] Input: da9063_onkey - avoid explicitly setting input's
> parent
>
> devm_input_allocate_device() already sets parent of the new input device,
> there's no need to set it up explicitly.
>
> Signed-off-by: Dmitry Torokhov <[email protected]>

Reviewed-by: Biju Das <[email protected]>

Cheers,
Biju

> ---
> drivers/input/misc/da9063_onkey.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/input/misc/da9063_onkey.c
> b/drivers/input/misc/da9063_onkey.c
> index ce499c28a7b2..c338765e0ecd 100644
> --- a/drivers/input/misc/da9063_onkey.c
> +++ b/drivers/input/misc/da9063_onkey.c
> @@ -211,7 +211,6 @@ static int da9063_onkey_probe(struct platform_device
> *pdev)
> snprintf(onkey->phys, sizeof(onkey->phys), "%s/input0",
> onkey->config->name);
> onkey->input->phys = onkey->phys;
> - onkey->input->dev.parent = &pdev->dev;
>
> input_set_capability(onkey->input, EV_KEY, KEY_POWER);
>
> --
> 2.43.0.195.gebba966016-goog
>
>
> --
> Dmitry