diff options
| author | Robert Marko <[email protected]> | 2024-06-03 14:06:12 +0200 |
|---|---|---|
| committer | Caleb Connolly <[email protected]> | 2024-07-26 01:53:11 +0200 |
| commit | 6af8dae8523a0d6c2d5d897d5121fbb35a76d37e (patch) | |
| tree | 77329047a2773a4edea8a3e3443864be2f552cc0 | |
| parent | d1b01d850284e2da54101e711cc1f416242b1837 (diff) | |
clock: qcom: ipq4019: add ESS clock
ESS clock is the Ethernet Subsystem clock, so lets add it as its
already configured by SBL1.
Signed-off-by: Robert Marko <[email protected]>
Reviewed-by: Caleb Connolly <[email protected]>
Reviewed-by: Sumit Garg <[email protected]>
| -rw-r--r-- | drivers/clk/qcom/clock-ipq4019.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/clk/qcom/clock-ipq4019.c b/drivers/clk/qcom/clock-ipq4019.c index 9352ff46818..af88ca3950a 100644 --- a/drivers/clk/qcom/clock-ipq4019.c +++ b/drivers/clk/qcom/clock-ipq4019.c @@ -64,6 +64,9 @@ static int ipq4019_clk_enable(struct clk *clk) case GCC_USB2_MOCK_UTMI_CLK: /* These clocks is already initialized by SBL1 */ return 0; + case GCC_ESS_CLK: + /* This clock is already initialized by SBL1 */ + return 0; default: return -EINVAL; } |
