Thread (34 messages) 34 messages, 4 authors, 28d ago

Re: [PATCH v3 08/11] video: backlight: lm3533_bl: Improve linear sysfs logic

From: Andy Shevchenko <hidden>
Date: 2026-06-02 08:09:48
Also in: dri-devel, linux-devicetree, linux-iio, linux-leds, lkml

On Mon, Jun 01, 2026 at 06:18:28PM +0300, Svyatoslav Ryhel wrote:
Simplify the sysfs logic of the linear property by switching to a macro
and a ternary operator.
...
 	if (kstrtoul(buf, 0, &linear))
 		return -EINVAL;
Besides _assign_bits() in the below, side note here to unshadow error codes:

	ret = kstrtoul(buf, 0, &linear);
	if (ret)
		return ret;

(obviously in a separate change).

...
 	ret = regmap_update_bits(bl->lm3533->regmap, LM3533_REG_CTRLBANK_AB_BCONF,
-				 mask, val);
+				 CTRLBANK_AB_BCONF_MODE(id),
+				 linear ? CTRLBANK_AB_BCONF_MODE(id) : 0);
 	if (ret)
 		return ret;
-- 
With Best Regards,
Andy Shevchenko

Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help