diff options
author | Julia Lawall <Julia.Lawall@inria.fr> | 2022-05-21 13:10:23 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-06-06 12:41:26 +0100 |
commit | 657f8bd88cb5a968d907fd1c891cee52dc156caa (patch) | |
tree | f1454ee576d5d1584df4f6357ab32e52b06263cc /include/linux/spi | |
parent | 901fc8e8079e401f3240006cab6629e65579701c (diff) | |
download | linux-stable-657f8bd88cb5a968d907fd1c891cee52dc156caa.tar.gz linux-stable-657f8bd88cb5a968d907fd1c891cee52dc156caa.tar.bz2 linux-stable-657f8bd88cb5a968d907fd1c891cee52dc156caa.zip |
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>
Diffstat (limited to 'include/linux/spi')
-rw-r--r-- | include/linux/spi/spi.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |