MIPS: Alchemy: Fix spelling contraction "cant" -> "can't"
authorColin Ian King <colin.king@canonical.com>
Wed, 28 Jul 2021 10:26:12 +0000 (11:26 +0100)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Thu, 29 Jul 2021 09:41:05 +0000 (11:41 +0200)
There is a spelling mistake in a pr_warn message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/alchemy/devboards/db1200.c

index 421d651..1864eb9 100644 (file)
@@ -835,7 +835,7 @@ int __init db1200_dev_setup(void)
        if (!IS_ERR(c)) {
                pfc = clk_round_rate(c, 50000000);
                if ((pfc < 1) || (abs(50000000 - pfc) > 2500000))
-                       pr_warn("DB1200: cant get I2C close to 50MHz\n");
+                       pr_warn("DB1200: can't get I2C close to 50MHz\n");
                else
                        clk_set_rate(c, pfc);
                clk_prepare_enable(c);