[PATCH 1/6] clk: scmi: Fix typo scmi_clk_get_attibute
Patrice Chotard
patrice.chotard at foss.st.com
Fri Nov 14 16:41:49 CET 2025
%s/scmi_clk_get_attibute/scmi_clk_get_attribute/
Signed-off-by: Patrice Chotard <patrice.chotard at foss.st.com>
Cc: Alice Guo <alice.guo at nxp.com>
Cc: Marek Vasut <marek.vasut+renesas at mailbox.org>
Cc: Patrick Delaunay <patrick.delaunay at foss.st.com>
Cc: Peng Fan <peng.fan at nxp.com>
Cc: Sean Anderson <seanga2 at gmail.com>
Cc: Tom Rini <trini at konsulko.com>
Cc: Valentin Caron <valentin.caron at foss.st.com>
Cc: Vinh Nguyen <vinh.nguyen.xz at renesas.com>
Cc: u-boot at lists.denx.de
---
drivers/clk/clk_scmi.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/clk/clk_scmi.c b/drivers/clk/clk_scmi.c
index 683ac822a01..f6132178205 100644
--- a/drivers/clk/clk_scmi.c
+++ b/drivers/clk/clk_scmi.c
@@ -87,8 +87,8 @@ static int scmi_clk_get_num_clock(struct udevice *dev, size_t *num_clocks)
return 0;
}
-static int scmi_clk_get_attibute(struct udevice *dev, int clkid, char *name,
- u32 *attr)
+static int scmi_clk_get_attribute(struct udevice *dev, int clkid, char *name,
+ u32 *attr)
{
struct scmi_clock_priv *priv = dev_get_priv(dev);
struct scmi_clk_attribute_in in = {
@@ -183,8 +183,8 @@ static int scmi_clk_get_ctrl_flags(struct clk *clk, u32 *ctrl_flags)
if (!clkscmi->attrs_resolved) {
char name[SCMI_CLOCK_NAME_LENGTH_MAX];
- ret = scmi_clk_get_attibute(dev, clk->id & CLK_ID_MSK,
- name, &attributes);
+ ret = scmi_clk_get_attribute(dev, clk->id & CLK_ID_MSK,
+ name, &attributes);
if (ret)
return ret;
--
2.43.0
More information about the U-Boot
mailing list