Signed-off-by: Geert Uytterhoeven <[email protected]>
---
 drivers/clk/clk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index a5202df30bb27598..77835e408fe67049 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -1981,7 +1981,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;
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-clk" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to