From: Julia Lawall Date: Sat, 21 May 2022 11:10:23 +0000 (+0200) Subject: spi: fix typo in comment X-Git-Tag: microblaze-v6.1~191^2~58 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=657f8bd88cb5a968d907fd1c891cee52dc156caa;p=linux-2.6-microblaze.git spi: fix typo in comment Spelling mistake (triple letters) in comment. Detected with the help of Coccinelle. Signed-off-by: Julia Lawall Link: https://lore.kernel.org/r/20220521111145.81697-13-Julia.Lawall@inria.fr Signed-off-by: Mark Brown --- diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index d361ba26203b..eadfd3ba3cbc 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h @@ -1127,7 +1127,7 @@ spi_max_transfer_size(struct spi_device *spi) if (ctlr->max_transfer_size) tr_max = ctlr->max_transfer_size(spi); - /* transfer size limit must not be greater than messsage size limit */ + /* transfer size limit must not be greater than message size limit */ return min(tr_max, msg_max); }