diff options
| author | Niels de Vos <[email protected]> | 2008-07-31 07:07:23 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2008-08-01 19:46:41 +0000 |
| commit | 61a2d07d3fb1ac34d142b9b62d4cd60a0f8c229e (patch) | |
| tree | f7ffe587767438bc0a4f4008a135e976e6264977 /drivers/net/netconsole.c | |
| parent | Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff) | |
| download | kernel-61a2d07d3fb1ac34d142b9b62d4cd60a0f8c229e.tar.gz kernel-61a2d07d3fb1ac34d142b9b62d4cd60a0f8c229e.zip | |
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 <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Cc: John W. Linville <[email protected]>
Cc: Ed L. Cashin <[email protected]>
Cc: Dave Airlie <[email protected]>
Cc: Roland Dreier <[email protected]>
Acked-by: Mauro Carvalho Chehab <[email protected]>
Cc: Jeff Garzik <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'drivers/net/netconsole.c')
| -rw-r--r-- | drivers/net/netconsole.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index e13966bb5f77..9681618c3232 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -53,7 +53,7 @@ MODULE_LICENSE("GPL"); static char config[MAX_PARAM_LENGTH]; 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 static int __init option_setup(char *opt) |
