[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <e01c875b-7317-cd00-23c5-d9736f7533ec@kaa.org.ua>
Date: Sat, 29 May 2021 00:01:56 +0300
From: Oleh Kravchenko <oleg@....org.ua>
To: Andy Shevchenko <andy.shevchenko@...il.com>,
Pavel Machek <pavel@....cz>,
Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
Amireddy Mallikarjuna reddy
<mallikarjunax.reddy@...ux.intel.com>,
Linus Walleij <linus.walleij@...aro.org>,
Marek Behún <marek.behun@....cz>,
Abanoub Sameh <abanoubsameh8@...il.com>,
Dan Murphy <dmurphy@...com>,
Krzysztof Kozlowski <krzk@...nel.org>,
linux-leds@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v1 06/28] leds: el15203000: Introduce to_el15203000_led()
helper
10.05.21 12:50, Andy Shevchenko пише:
> Introduce a helper to replace open coded container_of() calls.
> At the same time move ldev member to be first in the struct el15203000_led,
> that makes container_of() effectivelly a no-op.
>
> Signed-off-by: Andy Shevchenko <andy.shevchenko@...il.com>
> ---
> drivers/leds/leds-el15203000.c | 20 +++++++-------------
> 1 file changed, 7 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/leds/leds-el15203000.c b/drivers/leds/leds-el15203000.c
> index fcb90d7cd42f..e81a93d57210 100644
> --- a/drivers/leds/leds-el15203000.c
> +++ b/drivers/leds/leds-el15203000.c
> @@ -69,8 +69,8 @@ enum el15203000_command {
> };
>
> struct el15203000_led {
> - struct el15203000 *priv;
> struct led_classdev ldev;
> + struct el15203000 *priv;
> u32 reg;
> };
>
> @@ -83,6 +83,8 @@ struct el15203000 {
> struct el15203000_led leds[];
> };
>
> +#define to_el15203000_led(d) container_of(d, struct el15203000_led, ldev)
> +
> static int el15203000_cmd(struct el15203000_led *led, u8 brightness)
> {
> int ret;
> @@ -124,9 +126,7 @@ static int el15203000_cmd(struct el15203000_led *led, u8 brightness)
> static int el15203000_set_blocking(struct led_classdev *ldev,
> enum led_brightness brightness)
> {
> - struct el15203000_led *led = container_of(ldev,
> - struct el15203000_led,
> - ldev);
> + struct el15203000_led *led = to_el15203000_led(ldev);
>
> return el15203000_cmd(led, brightness == LED_OFF ? EL_OFF : EL_ON);
> }
> @@ -135,9 +135,7 @@ static int el15203000_pattern_set_S(struct led_classdev *ldev,
> struct led_pattern *pattern,
> u32 len, int repeat)
> {
> - struct el15203000_led *led = container_of(ldev,
> - struct el15203000_led,
> - ldev);
> + struct el15203000_led *led = to_el15203000_led(ldev);
>
> if (repeat > 0 || len != 2 ||
> pattern[0].delta_t != 4000 || pattern[0].brightness != 0 ||
> @@ -188,10 +186,8 @@ static int el15203000_pattern_set_P(struct led_classdev *ldev,
> struct led_pattern *pattern,
> u32 len, int repeat)
> {
> + struct el15203000_led *led = to_el15203000_led(ldev);
> u8 cmd;
> - struct el15203000_led *led = container_of(ldev,
> - struct el15203000_led,
> - ldev);
>
> if (repeat > 0)
> return -EINVAL;
> @@ -228,9 +224,7 @@ static int el15203000_pattern_set_P(struct led_classdev *ldev,
>
> static int el15203000_pattern_clear(struct led_classdev *ldev)
> {
> - struct el15203000_led *led = container_of(ldev,
> - struct el15203000_led,
> - ldev);
> + struct el15203000_led *led = to_el15203000_led(ldev);
>
> return el15203000_cmd(led, EL_OFF);
> }
>
Reviewed-by: Oleh Kravchenko <oleg@....org.ua>
Powered by blists - more mailing lists