Re: [PATCH] ASoC: cs35l56: Support clock stop mode 1 if enabled in ACPI
From: Richard Fitzgerald
Date: Wed Mar 11 2026 - 11:17:48 EST
On 11/03/2026 3:03 pm, Mark Brown wrote:
On Wed, Mar 11, 2026 at 02:21:53PM +0000, Richard Fitzgerald wrote:
+ ret = fwnode_property_read_u8(dev_fwnode(cs35l56->base.dev),
+ "mipi-sdw-clock-stop-mode1-supported",
+ &clock_stop_1);
+ if (ret == 0)
+ prop->clk_stop_mode1 = !!clock_stop_1;
Should this be using fwnode_property_read_bool()?
No, that only reports whether the property exists (it calls
acpi_fwnode_property_present()).
The property can (and usually does) exist with value 0 to disable
clock-stop-mode1.
I copied the use of fwnode_property_read_u8() to read this property from
the implementation of sdw_slave_read_prop().