On 12/6/23 03:38, Nitin Rawat wrote:
+ list_for_each_entry(clki, head, list) { + if (!clki->name) + continue; + + clki->clk = devm_clk_get(hba->dev, clki->name); + if (!IS_ERR(clki->clk)) {
Please change the above line into the following: if (IS_ERR(...)) continue; to reduce the indentation level of the code below this statement. Thanks, Bart.