summaryrefslogtreecommitdiffstats
path: root/arch/mips/alchemy
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2021-07-28 11:26:12 +0100
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>2021-07-29 11:41:05 +0200
commita86aadeff2fe9203d9575f1c157d09b3c557d1ce (patch)
tree47e5428efb9ceb27da60706d178c9347a7220616 /arch/mips/alchemy
parentd2ac3a11cba23454516ba17f03e078a6831b8be5 (diff)
downloadlinux-a86aadeff2fe9203d9575f1c157d09b3c557d1ce.tar.bz2
MIPS: Alchemy: Fix spelling contraction "cant" -> "can't"
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>
Diffstat (limited to 'arch/mips/alchemy')
-rw-r--r--arch/mips/alchemy/devboards/db1200.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/alchemy/devboards/db1200.c b/arch/mips/alchemy/devboards/db1200.c
index 421d651433b6..1864eb935ca5 100644
--- a/arch/mips/alchemy/devboards/db1200.c
+++ b/arch/mips/alchemy/devboards/db1200.c
@@ -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);