Re: [PATCH V4] scsi: ufs: core: store min and max clk freq from OPP table

From: Bart Van Assche
Date: Wed Dec 06 2023 - 20:06:21 EST


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.