forked from luck/tmp_suning_uos_patched
leds: turris-omnia: check for LED_COLOR_ID_RGB instead LED_COLOR_ID_MULTI
[ 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: 77dce3a22e
("leds: disallow /sys/class/leds/*:multi:* for now")
Signed-off-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
ad316987c4
commit
dbbc5e42c4
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user