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

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
......@@ -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");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment