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

Commit 56cda8ac authored by Anton Gerasimov's avatar Anton Gerasimov Committed by Greg Kroah-Hartman
Browse files

staging: fbtft: make module descriptions greppable



Split module description strings are merged for searchability.

Signed-off-by: default avatarAnton Gerasimov <anton.gerasimov@openmailbox.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c26c5e73
Loading
Loading
Loading
Loading
+3 −6
Original line number Original line Diff line number Diff line
@@ -34,8 +34,7 @@ static struct platform_device *p_device;


static char *name;
static char *name;
module_param(name, charp, 0);
module_param(name, charp, 0);
MODULE_PARM_DESC(name, "Devicename (required). " \
MODULE_PARM_DESC(name, "Devicename (required). name=list => list all supported devices.");
"name=list => list all supported devices.");


static unsigned rotate;
static unsigned rotate;
module_param(rotate, uint, 0);
module_param(rotate, uint, 0);
@@ -61,8 +60,7 @@ MODULE_PARM_DESC(mode, "SPI mode (override device default)");
static char *gpios;
static char *gpios;
module_param(gpios, charp, 0);
module_param(gpios, charp, 0);
MODULE_PARM_DESC(gpios,
MODULE_PARM_DESC(gpios,
"List of gpios. Comma separated with the form: reset:23,dc:24 " \
"List of gpios. Comma separated with the form: reset:23,dc:24 (when overriding the default, all gpios must be specified)");
"(when overriding the default, all gpios must be specified)");


static unsigned fps;
static unsigned fps;
module_param(fps, uint, 0);
module_param(fps, uint, 0);
@@ -88,8 +86,7 @@ MODULE_PARM_DESC(startbyte, "Sets the Start byte used by some SPI displays.");


static bool custom;
static bool custom;
module_param(custom, bool, 0);
module_param(custom, bool, 0);
MODULE_PARM_DESC(custom, "Add a custom display device. " \
MODULE_PARM_DESC(custom, "Add a custom display device. Use speed= argument to make it a SPI device, else platform_device");
"Use speed= argument to make it a SPI device, else platform_device");


static unsigned width;
static unsigned width;
module_param(width, uint, 0);
module_param(width, uint, 0);