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

spi: loopback: fix typo in MODULE_PARM_DESC

There should be an 's' on "dump_message" so it matches the module_param.

Fixes: 84e0c4e5e2c4 ('spi: add loopback test driver to allow for spi_master regression tests')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Dan Carpenter and committed by
Mark Brown
8caad1da 1e8db97f

+1 -1
+1 -1
drivers/spi/spi-loopback-test.c
··· 37 37 /* dump spi messages */ 38 38 int dump_messages; 39 39 module_param(dump_messages, int, 0); 40 - MODULE_PARM_DESC(dump_message, 40 + MODULE_PARM_DESC(dump_messages, 41 41 "=1 dump the basic spi_message_structure, " \ 42 42 "=2 dump the spi_message_structure including data, " \ 43 43 "=3 dump the spi_message structure before and after execution");