spi: loopback: fix typo in MODULE_PARM_DESC
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 8 Jan 2016 10:48:51 +0000 (13:48 +0300)
committerMark Brown <broonie@kernel.org>
Fri, 8 Jan 2016 12:53:35 +0000 (12:53 +0000)
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>
drivers/spi/spi-loopback-test.c

index 7f79a77c4b68a0cf83af3c2f9c29d170810c0863..894616f687b0f314168bc17e77d14b7e477a4ec8 100644 (file)
@@ -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");
This page took 0.025053 seconds and 5 git commands to generate.