Commit 3fe003f9 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Stephen Boyd

clk: Spelling s/derefing/dereferencing/

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 20dd882a
......@@ -1944,7 +1944,7 @@ bool clk_is_match(const struct clk *p, const struct clk *q)
if (p == q)
return true;
/* true if clk->core pointers match. Avoid derefing garbage */
/* true if clk->core pointers match. Avoid dereferencing garbage */
if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
if (p->core == q->core)
return true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment