mirror of https://gitee.com/openkylin/linux.git
spi: loopback: fix typo in MODULE_PARM_DESC
There should be an 's' on "dump_message" so it matches the module_param.
Fixes: 84e0c4e5e2
('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>
This commit is contained in:
parent
1e8db97f0e
commit
8caad1da22
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue