lkml.org 
[lkml]   [2020]   [Dec]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.10 205/717] leds: turris-omnia: check for LED_COLOR_ID_RGB instead LED_COLOR_ID_MULTI
    Date
    From: Marek Behún <kabel@kernel.org>

    [ Upstream commit 98650b0874171cc443251f7b369d3b1544db9d4e ]

    LED core does not allow LED_COLOR_ID_MULTI for now and instead for RGB
    LEDs prefers LED_COLOR_ID_RGB.

    Signed-off-by: Marek Behún <kabel@kernel.org>
    Fixes: 77dce3a22e89 ("leds: disallow /sys/class/leds/*:multi:* for now")
    Signed-off-by: Pavel Machek <pavel@ucw.cz>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    drivers/leds/leds-turris-omnia.c | 4 ++--
    1 file changed, 2 insertions(+), 2 deletions(-)

    diff --git a/drivers/leds/leds-turris-omnia.c b/drivers/leds/leds-turris-omnia.c
    index 8c5bdc3847ee7..880fc8def5309 100644
    --- a/drivers/leds/leds-turris-omnia.c
    +++ b/drivers/leds/leds-turris-omnia.c
    @@ -98,9 +98,9 @@ static int omnia_led_register(struct i2c_client *client, struct omnia_led *led,
    }

    ret = of_property_read_u32(np, "color", &color);
    - if (ret || color != LED_COLOR_ID_MULTI) {
    + if (ret || color != LED_COLOR_ID_RGB) {
    dev_warn(dev,
    - "Node %pOF: must contain 'color' property with value LED_COLOR_ID_MULTI\n",
    + "Node %pOF: must contain 'color' property with value LED_COLOR_ID_RGB\n",
    np);
    return 0;
    }
    --
    2.27.0


    \
     
     \ /
      Last update: 2020-12-28 16:09    [W:4.053 / U:0.236 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site