aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorCaleb Connolly <caleb.connolly@linaro.org>2024-02-26 17:26:09 +0000
committerCaleb Connolly <caleb.connolly@linaro.org>2024-03-01 14:44:35 +0000
commit7d96cca9e1d83ef307d7907e15d7a504ffc1ae69 (patch)
treeb064db6bac88b7069ab096c143ee22e75af1b3b8 /drivers
parentdae9614e1eb8fa5d4ae8051497a582940430e134 (diff)
downloadu-boot-7d96cca9e1d83ef307d7907e15d7a504ffc1ae69.zip
u-boot-7d96cca9e1d83ef307d7907e15d7a504ffc1ae69.tar.gz
u-boot-7d96cca9e1d83ef307d7907e15d7a504ffc1ae69.tar.bz2
clk/qcom: use upstream compatible properties
Adjust the apq8016 and apq8096 drivers to use the upstream compatible properties, and adjust the associated dts files in U-Boot. Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Reviewed-by: Sumit Garg <sumit.garg@linaro.org> Tested-by: Sumit Garg <sumit.garg@linaro.org> #qcs404 Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/qcom/clock-apq8016.c2
-rw-r--r--drivers/clk/qcom/clock-apq8096.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/qcom/clock-apq8016.c b/drivers/clk/qcom/clock-apq8016.c
index c0ce570..0af7191 100644
--- a/drivers/clk/qcom/clock-apq8016.c
+++ b/drivers/clk/qcom/clock-apq8016.c
@@ -145,7 +145,7 @@ static struct msm_clk_data apq8016_clk_data = {
static const struct udevice_id gcc_apq8016_of_match[] = {
{
- .compatible = "qcom,gcc-apq8016",
+ .compatible = "qcom,gcc-msm8916",
.data = (ulong)&apq8016_clk_data,
},
{ }
diff --git a/drivers/clk/qcom/clock-apq8096.c b/drivers/clk/qcom/clock-apq8096.c
index cf1a347..1e6fdb5 100644
--- a/drivers/clk/qcom/clock-apq8096.c
+++ b/drivers/clk/qcom/clock-apq8096.c
@@ -123,7 +123,7 @@ static struct msm_clk_data apq8096_clk_data = {
static const struct udevice_id gcc_apq8096_of_match[] = {
{
- .compatible = "qcom,gcc-apq8096",
+ .compatible = "qcom,gcc-msm8996",
.data = (ulong)&apq8096_clk_data,
},
{ }