forked from luck/tmp_suning_uos_patched
leds: lm36274: do not set chip settings in DT parsing function
These settings are not parsed from DT and therefore semantically should not be set in function with a name lm36274_parse_dt. Signed-off-by: Marek Behún <marek.behun@nic.cz> Tested-by: Dan Murphy <dmurphy@ti.com> Signed-off-by: Pavel Machek <pavel@ucw.cz>
This commit is contained in:
parent
1aeef38c6a
commit
484456712d
|
@ -100,14 +100,6 @@ static int lm36274_parse_dt(struct lm36274 *chip,
|
|||
fwnode_property_read_string(child, "linux,default-trigger",
|
||||
&chip->led_dev.default_trigger);
|
||||
|
||||
chip->lmu_data.regmap = chip->regmap;
|
||||
chip->lmu_data.max_brightness = MAX_BRIGHTNESS_11BIT;
|
||||
chip->lmu_data.msb_brightness_reg = LM36274_REG_BRT_MSB;
|
||||
chip->lmu_data.lsb_brightness_reg = LM36274_REG_BRT_LSB;
|
||||
|
||||
chip->led_dev.max_brightness = MAX_BRIGHTNESS_11BIT;
|
||||
chip->led_dev.brightness_set_blocking = lm36274_brightness_set;
|
||||
|
||||
return 0;
|
||||
err:
|
||||
fwnode_handle_put(child);
|
||||
|
@ -142,6 +134,14 @@ static int lm36274_probe(struct platform_device *pdev)
|
|||
return ret;
|
||||
}
|
||||
|
||||
chip->lmu_data.regmap = chip->regmap;
|
||||
chip->lmu_data.max_brightness = MAX_BRIGHTNESS_11BIT;
|
||||
chip->lmu_data.msb_brightness_reg = LM36274_REG_BRT_MSB;
|
||||
chip->lmu_data.lsb_brightness_reg = LM36274_REG_BRT_LSB;
|
||||
|
||||
chip->led_dev.max_brightness = MAX_BRIGHTNESS_11BIT;
|
||||
chip->led_dev.brightness_set_blocking = lm36274_brightness_set;
|
||||
|
||||
ret = led_classdev_register_ext(chip->dev, &chip->led_dev, &init_data);
|
||||
if (ret)
|
||||
dev_err(chip->dev, "Failed to register LED for node %pfw\n",
|
||||
|
|
Loading…
Reference in New Issue
Block a user