All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/7] mmc: msm_sdhci: Match clocks through "clocks" property
@ 2023-03-24  0:40 Konrad Dybcio
  2023-03-24  0:40 ` [PATCH 2/7] serial: msm: " Konrad Dybcio
                   ` (7 more replies)
  0 siblings, 8 replies; 23+ messages in thread
From: Konrad Dybcio @ 2023-03-24  0:40 UTC (permalink / raw)
  To: u-boot
  Cc: Bhupesh Sharma, Konrad Dybcio, Jaehoon Chung, Peng Fan, Ramon Fried

"clocks" is the standard property used in Linux, "clock" seems to be
an U-Boot invention. Use the one that's more standardized.

Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---

 drivers/mmc/msm_sdhci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/msm_sdhci.c b/drivers/mmc/msm_sdhci.c
index 604f9c3ff99c..174435f01f68 100644
--- a/drivers/mmc/msm_sdhci.c
+++ b/drivers/mmc/msm_sdhci.c
@@ -63,7 +63,7 @@ static int msm_sdc_clk_init(struct udevice *dev)
 	struct clk clk;
 	int ret;
 
-	ret = fdtdec_get_int_array(gd->fdt_blob, node, "clock", clkd, 2);
+	ret = fdtdec_get_int_array(gd->fdt_blob, node, "clocks", clkd, 2);
 	if (ret)
 		return ret;
 
-- 
2.40.0


^ permalink raw reply related	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2023-03-28 14:31 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-24  0:40 [PATCH 1/7] mmc: msm_sdhci: Match clocks through "clocks" property Konrad Dybcio
2023-03-24  0:40 ` [PATCH 2/7] serial: msm: " Konrad Dybcio
2023-03-24  6:00   ` Sumit Garg
2023-03-24  9:34     ` Konrad Dybcio
2023-03-24  0:40 ` [PATCH 3/7] serial: msm: Always bind before relocation Konrad Dybcio
2023-03-24  6:04   ` Sumit Garg
2023-03-24  9:35     ` Konrad Dybcio
2023-03-24  0:40 ` [PATCH 4/7] arch: snapdragon: clock: " Konrad Dybcio
2023-03-24  6:06   ` Sumit Garg
2023-03-24 15:24     ` Tom Rini
2023-03-27  5:37       ` Sumit Garg
2023-03-27 16:24         ` Tom Rini
2023-03-24  0:40 ` [PATCH 5/7] arm: snapdragon: pinctrl: " Konrad Dybcio
2023-03-24  6:06   ` Sumit Garg
2023-03-24  0:40 ` [PATCH 6/7] serial: msm_geni: Use upstream Linux bindings Konrad Dybcio
2023-03-24  6:13   ` Sumit Garg
2023-03-24  9:35     ` Konrad Dybcio
2023-03-24  0:40 ` [PATCH 7/7] arm: Migrate Apple M1 to save_prev_bl_data Konrad Dybcio
2023-03-27 19:31   ` Mark Kettenis
2023-03-28  8:17     ` Konrad Dybcio
2023-03-28 14:30       ` Tom Rini
2023-03-24  5:55 ` [PATCH 1/7] mmc: msm_sdhci: Match clocks through "clocks" property Sumit Garg
2023-03-24  7:05 ` Bhupesh Sharma

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.