diff options
| author | Julius Lehmann <[email protected]> | 2025-02-10 16:27:27 +0000 |
|---|---|---|
| committer | Caleb Connolly <[email protected]> | 2025-02-26 13:16:40 +0000 |
| commit | 506f6a384c335e86c4812c5e734dea4eabc21130 (patch) | |
| tree | 92052a41614a8b51a5463d8527ddf1e19c9c729b | |
| parent | b72d6a9d619b000875699fde633b26c0ec1bca67 (diff) | |
clk: stub: add sm8150 compatible id
Add support for sm8150 clock controller to clk stub driver.
Signed-off-by: Julius Lehmann <[email protected]>
Reviewed-by: Neil Armstrong <[email protected]>
| -rw-r--r-- | drivers/clk/clk-stub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/clk-stub.c b/drivers/clk/clk-stub.c index ea817031fa6..5fbbb07b7f7 100644 --- a/drivers/clk/clk-stub.c +++ b/drivers/clk/clk-stub.c @@ -50,6 +50,7 @@ static struct clk_ops stub_clk_ops = { static const struct udevice_id stub_clk_ids[] = { { .compatible = "qcom,rpmcc" }, + { .compatible = "qcom,sm8150-rpmh-clk" }, { .compatible = "qcom,sm8250-rpmh-clk" }, { .compatible = "qcom,sm8550-rpmh-clk" }, { .compatible = "qcom,sm8650-rpmh-clk" }, |
