27 Jun
2024
27 Jun
'24
8:15 a.m.
27.06.2024 03:44, AS50 KCHSU0 wrote:
+ nau8824->mclk = devm_clk_get(component->dev, "mclk"); + if (PTR_ERR(nau8824->mclk) == -EPROBE_DEFER) + return -EPROBE_DEFER;
return 0; }
Would it be better to move the retrieval of mclk property to the function nau8824_read_device_properties? All properties can be read together.
Sure. I will do it in V2.