Re: [PATCH V5 5/7] clk: qcom: Add NSS clock Controller driver for IPQ9574
From: Manikanta Mylavarapu
Date: Fri Oct 04 2024 - 04:02:48 EST
On 6/26/2024 9:09 PM, Konrad Dybcio wrote:
> On 26.06.2024 4:33 PM, Devi Priya wrote:
>> Add Networking Sub System Clock Controller(NSSCC) driver for ipq9574 based
>> devices.
>>
>> Signed-off-by: Devi Priya <quic_devipriy@xxxxxxxxxxx>
>> Tested-by: Alexandru Gagniuc <mr.nuke.me@xxxxxxxxx>
>> ---
>
> [...]
>
>> + struct regmap *regmap;
>> + struct qcom_cc_desc nsscc_ipq9574_desc = nss_cc_ipq9574_desc;
>> + struct clk *nsscc_clk;
>> + struct device_node *np = (&pdev->dev)->of_node;
>> + int ret;
>> +
>> + nsscc_clk = of_clk_get(np, 11);
>> + if (IS_ERR(nsscc_clk))
>> + return PTR_ERR(nsscc_clk);
>> +
>> + ret = clk_prepare_enable(nsscc_clk);
>> + if (ret)
>> + clk_disable_unprepare(nsscc_clk);
>
> No changes to be seen..
>
Hi Konrad,
Sorry for the delayed response.
The ethernet node will subscribe to GCC_NSSCC_CLK and enable it.
Hence, it need not be obtained and setup here. Will drop this.
Thanks & Regards,
Manikanta.
> Konrad