Skip to content

Commit 16328e7

Browse files
Anson-Huangdlezcano
authored andcommitted
clocksource/drivers/imx-tpm: Fix typo of clock name
The clock name should be ipg instead of igp. Signed-off-by: Anson Huang <[email protected]> Signed-off-by: Daniel Lezcano <[email protected]>
1 parent cc01456 commit 16328e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clocksource/timer-imx-tpm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ static int __init tpm_timer_init(struct device_node *np)
179179
ipg = of_clk_get_by_name(np, "ipg");
180180
per = of_clk_get_by_name(np, "per");
181181
if (IS_ERR(ipg) || IS_ERR(per)) {
182-
pr_err("tpm: failed to get igp or per clk\n");
182+
pr_err("tpm: failed to get ipg or per clk\n");
183183
ret = -ENODEV;
184184
goto err_clk_get;
185185
}

0 commit comments

Comments
 (0)