Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

spi: fix typo in comment

Spelling mistake (triple letters) in comment.
Detected with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Link: https://lore.kernel.org/r/20220521111145.81697-13-Julia.Lawall@inria.fr
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Julia Lawall and committed by
Mark Brown
657f8bd8 901fc8e8

+1 -1
+1 -1
include/linux/spi/spi.h
··· 1127 1127 if (ctlr->max_transfer_size) 1128 1128 tr_max = ctlr->max_transfer_size(spi); 1129 1129 1130 - /* transfer size limit must not be greater than messsage size limit */ 1130 + /* transfer size limit must not be greater than message size limit */ 1131 1131 return min(tr_max, msg_max); 1132 1132 } 1133 1133