Remove newline from the description of module parameters
Some module parameters with only one line have the '\n' at the end of the description. This is not needed nor wanted as after the description the type (i.e. int) is followed by a newline. Some modules contain a multi-line description, these are not affected by this patch. Signed-off-by: Niels de Vos <niels.devos@wincor-nixdorf.com> Acked-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: John W. Linville <linville@tuxdriver.com> Cc: Ed L. Cashin <ecashin@coraid.com> Cc: Dave Airlie <airlied@linux.ie> Cc: Roland Dreier <rolandd@cisco.com> Acked-by: Mauro Carvalho Chehab <mchehab@infradead.org> Cc: Jeff Garzik <jeff@garzik.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3a4b7886ee
commit
61a2d07d3f
|
@ -78,9 +78,9 @@ MODULE_LICENSE("GPL");
|
||||||
static uid_t asus_uid;
|
static uid_t asus_uid;
|
||||||
static gid_t asus_gid;
|
static gid_t asus_gid;
|
||||||
module_param(asus_uid, uint, 0);
|
module_param(asus_uid, uint, 0);
|
||||||
MODULE_PARM_DESC(asus_uid, "UID for entries in /proc/acpi/asus.\n");
|
MODULE_PARM_DESC(asus_uid, "UID for entries in /proc/acpi/asus");
|
||||||
module_param(asus_gid, uint, 0);
|
module_param(asus_gid, uint, 0);
|
||||||
MODULE_PARM_DESC(asus_gid, "GID for entries in /proc/acpi/asus.\n");
|
MODULE_PARM_DESC(asus_gid, "GID for entries in /proc/acpi/asus");
|
||||||
|
|
||||||
/* For each model, all features implemented,
|
/* For each model, all features implemented,
|
||||||
* those marked with R are relative to HOTK, A for absolute */
|
* those marked with R are relative to HOTK, A for absolute */
|
||||||
|
|
|
@ -30,7 +30,7 @@ enum {
|
||||||
|
|
||||||
static char aoe_iflist[IFLISTSZ];
|
static char aoe_iflist[IFLISTSZ];
|
||||||
module_param_string(aoe_iflist, aoe_iflist, IFLISTSZ, 0600);
|
module_param_string(aoe_iflist, aoe_iflist, IFLISTSZ, 0600);
|
||||||
MODULE_PARM_DESC(aoe_iflist, "aoe_iflist=\"dev1 [dev2 ...]\"\n");
|
MODULE_PARM_DESC(aoe_iflist, "aoe_iflist=\"dev1 [dev2 ...]\"");
|
||||||
|
|
||||||
#ifndef MODULE
|
#ifndef MODULE
|
||||||
static int __init aoe_iflist_setup(char *str)
|
static int __init aoe_iflist_setup(char *str)
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
int radeon_no_wb;
|
int radeon_no_wb;
|
||||||
|
|
||||||
MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers\n");
|
MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
|
||||||
module_param_named(no_wb, radeon_no_wb, int, 0444);
|
module_param_named(no_wb, radeon_no_wb, int, 0444);
|
||||||
|
|
||||||
static int dri_library_name(struct drm_device *dev, char *buf)
|
static int dri_library_name(struct drm_device *dev, char *buf)
|
||||||
|
|
|
@ -528,7 +528,7 @@ static const struct ipath_cregs ipath_7220_cregs = {
|
||||||
|
|
||||||
static char int_type[16] = "auto";
|
static char int_type[16] = "auto";
|
||||||
module_param_string(interrupt_type, int_type, sizeof(int_type), 0444);
|
module_param_string(interrupt_type, int_type, sizeof(int_type), 0444);
|
||||||
MODULE_PARM_DESC(int_type, " interrupt_type=auto|force_msi|force_intx\n");
|
MODULE_PARM_DESC(int_type, " interrupt_type=auto|force_msi|force_intx");
|
||||||
|
|
||||||
/* packet rate matching delay; chip has support */
|
/* packet rate matching delay; chip has support */
|
||||||
static u8 rate_to_delay[2][2] = {
|
static u8 rate_to_delay[2][2] = {
|
||||||
|
|
|
@ -35,7 +35,7 @@ static int debug;
|
||||||
|
|
||||||
module_param(debug, bool, 0644);
|
module_param(debug, bool, 0644);
|
||||||
|
|
||||||
MODULE_PARM_DESC(debug, "Debugging messages\n\t\t\t0=Off (default), 1=On");
|
MODULE_PARM_DESC(debug, "Debugging messages, 0=Off (default), 1=On");
|
||||||
|
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------- */
|
/* ----------------------------------------------------------------------- */
|
||||||
|
|
|
@ -39,7 +39,7 @@ static int debug;
|
||||||
|
|
||||||
module_param(debug, bool, 0644);
|
module_param(debug, bool, 0644);
|
||||||
|
|
||||||
MODULE_PARM_DESC(debug, "Debugging messages\n\t\t\t0=Off (default), 1=On");
|
MODULE_PARM_DESC(debug, "Debugging messages, 0=Off (default), 1=On");
|
||||||
|
|
||||||
static unsigned short normal_i2c[] = { 0x22 >> 1, I2C_CLIENT_END };
|
static unsigned short normal_i2c[] = { 0x22 >> 1, I2C_CLIENT_END };
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
static char *sensor_type;
|
static char *sensor_type;
|
||||||
module_param(sensor_type, charp, S_IRUGO);
|
module_param(sensor_type, charp, S_IRUGO);
|
||||||
MODULE_PARM_DESC(sensor_type, "Sensor type: \"colour\" or \"monochrome\"\n");
|
MODULE_PARM_DESC(sensor_type, "Sensor type: \"colour\" or \"monochrome\"");
|
||||||
|
|
||||||
/* mt9v022 selected register addresses */
|
/* mt9v022 selected register addresses */
|
||||||
#define MT9V022_CHIP_VERSION 0x00
|
#define MT9V022_CHIP_VERSION 0x00
|
||||||
|
|
|
@ -53,7 +53,7 @@ MODULE_LICENSE("GPL");
|
||||||
|
|
||||||
static char config[MAX_PARAM_LENGTH];
|
static char config[MAX_PARAM_LENGTH];
|
||||||
module_param_string(netconsole, config, MAX_PARAM_LENGTH, 0);
|
module_param_string(netconsole, config, MAX_PARAM_LENGTH, 0);
|
||||||
MODULE_PARM_DESC(netconsole, " netconsole=[src-port]@[src-ip]/[dev],[tgt-port]@<tgt-ip>/[tgt-macaddr]\n");
|
MODULE_PARM_DESC(netconsole, " netconsole=[src-port]@[src-ip]/[dev],[tgt-port]@<tgt-ip>/[tgt-macaddr]");
|
||||||
|
|
||||||
#ifndef MODULE
|
#ifndef MODULE
|
||||||
static int __init option_setup(char *opt)
|
static int __init option_setup(char *opt)
|
||||||
|
|
|
@ -108,7 +108,7 @@ MODULE_PARM_DESC(pkt_buf_sz,"3c359: Initial buffer size") ;
|
||||||
static int message_level[XL_MAX_ADAPTERS] = {0,} ;
|
static int message_level[XL_MAX_ADAPTERS] = {0,} ;
|
||||||
|
|
||||||
module_param_array(message_level, int, NULL, 0) ;
|
module_param_array(message_level, int, NULL, 0) ;
|
||||||
MODULE_PARM_DESC(message_level, "3c359: Level of reported messages \n") ;
|
MODULE_PARM_DESC(message_level, "3c359: Level of reported messages") ;
|
||||||
/*
|
/*
|
||||||
* This is a real nasty way of doing this, but otherwise you
|
* This is a real nasty way of doing this, but otherwise you
|
||||||
* will be stuck with 1555 lines of hex #'s in the code.
|
* will be stuck with 1555 lines of hex #'s in the code.
|
||||||
|
|
|
@ -11946,7 +11946,7 @@ module_param(auto_create, int, 0444);
|
||||||
MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
|
MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
|
||||||
|
|
||||||
module_param(led, int, 0444);
|
module_param(led, int, 0444);
|
||||||
MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)\n");
|
MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)");
|
||||||
|
|
||||||
module_param(debug, int, 0444);
|
module_param(debug, int, 0444);
|
||||||
MODULE_PARM_DESC(debug, "debug output mask");
|
MODULE_PARM_DESC(debug, "debug output mask");
|
||||||
|
|
|
@ -2469,7 +2469,7 @@ MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
|
||||||
module_param_named(disable, iwl4965_mod_params.disable, int, 0444);
|
module_param_named(disable, iwl4965_mod_params.disable, int, 0444);
|
||||||
MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
|
MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
|
||||||
module_param_named(swcrypto, iwl4965_mod_params.sw_crypto, int, 0444);
|
module_param_named(swcrypto, iwl4965_mod_params.sw_crypto, int, 0444);
|
||||||
MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])\n");
|
MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
|
||||||
module_param_named(debug, iwl4965_mod_params.debug, int, 0444);
|
module_param_named(debug, iwl4965_mod_params.debug, int, 0444);
|
||||||
MODULE_PARM_DESC(debug, "debug output mask");
|
MODULE_PARM_DESC(debug, "debug output mask");
|
||||||
module_param_named(
|
module_param_named(
|
||||||
|
|
|
@ -2536,7 +2536,7 @@ module_param(fh, int, 0);
|
||||||
MODULE_PARM_DESC(fh, "Startup horizontal frequency, 0-999kHz, 1000-INF Hz");
|
MODULE_PARM_DESC(fh, "Startup horizontal frequency, 0-999kHz, 1000-INF Hz");
|
||||||
module_param(fv, int, 0);
|
module_param(fv, int, 0);
|
||||||
MODULE_PARM_DESC(fv, "Startup vertical frequency, 0-INF Hz\n"
|
MODULE_PARM_DESC(fv, "Startup vertical frequency, 0-INF Hz\n"
|
||||||
"You should specify \"fv:max_monitor_vsync,fh:max_monitor_hsync,maxclk:max_monitor_dotclock\"\n");
|
"You should specify \"fv:max_monitor_vsync,fh:max_monitor_hsync,maxclk:max_monitor_dotclock\"");
|
||||||
module_param(grayscale, int, 0);
|
module_param(grayscale, int, 0);
|
||||||
MODULE_PARM_DESC(grayscale, "Sets display into grayscale. Works perfectly with paletized videomode (4, 8bpp), some limitations apply to 16, 24 and 32bpp videomodes (default=nograyscale)");
|
MODULE_PARM_DESC(grayscale, "Sets display into grayscale. Works perfectly with paletized videomode (4, 8bpp), some limitations apply to 16, 24 and 32bpp videomodes (default=nograyscale)");
|
||||||
module_param(cross4MB, int, 0);
|
module_param(cross4MB, int, 0);
|
||||||
|
|
Loading…
Reference in New Issue