From: Colin Ian King Date: Wed, 28 Jul 2021 10:32:54 +0000 (+0100) Subject: memstick: ms_block: Fix spelling contraction "cant" -> "can't" X-Git-Tag: libata-5.15-2021-09-05~59^2~30 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=60885bfb2a478ceb3b1b766be550eb364a595074;p=linux-block.git memstick: ms_block: Fix spelling contraction "cant" -> "can't" There is a spelling mistake in a pr_err message. Fix it. Signed-off-by: Colin Ian King Link: https://lore.kernel.org/r/20210728103254.171546-1-colin.king@canonical.com Signed-off-by: Ulf Hansson --- diff --git a/drivers/memstick/core/ms_block.c b/drivers/memstick/core/ms_block.c index 4a4573fa7b0f..acf36676e388 100644 --- a/drivers/memstick/core/ms_block.c +++ b/drivers/memstick/core/ms_block.c @@ -1105,7 +1105,7 @@ static u16 msb_get_free_block(struct msb_data *msb, int zone) dbg_verbose("result of the free blocks scan: pba %d", pba); if (pba == msb->block_count || (msb_get_zone_from_pba(pba)) != zone) { - pr_err("BUG: cant get a free block"); + pr_err("BUG: can't get a free block"); msb->read_only = true; return MS_BLOCK_INVALID; }