Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8caad1da authored by Dan Carpenter's avatar Dan Carpenter Committed by Mark Brown
Browse files

spi: loopback: fix typo in MODULE_PARM_DESC



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

Fixes: 84e0c4e5 ('spi: add loopback test driver to allow for spi_master regression tests')
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 1e8db97f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ MODULE_PARM_DESC(simulate_only, "if not 0 do not execute the spi message");
/* dump spi messages */
int dump_messages;
module_param(dump_messages, int, 0);
MODULE_PARM_DESC(dump_message,
MODULE_PARM_DESC(dump_messages,
		 "=1 dump the basic spi_message_structure, " \
		 "=2 dump the spi_message_structure including data, " \
		 "=3 dump the spi_message structure before and after execution");