diff options
author | Darren Hart <dvhart@linux.intel.com> | 2012-03-09 12:51:52 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-03-09 15:43:20 -0500 |
commit | a46f5533ecfc7bbdd646d84fdab8656031a715c6 (patch) | |
tree | 137bbc208ea3263e987eab50029331ceae6e50c8 /drivers/tty | |
parent | 7ce9251d606780a53efc7dcdaa4518d93867c27f (diff) |
pch_uart: Add module parameter descriptions
Document default_baud and user_uartclk module parameters.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Tomoya MORINAGA <tomoya.rohm@gmail.com>
CC: Feng Tang <feng.tang@intel.com>
CC: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/pch_uart.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c index cca742b01800..332f2eb8abbc 100644 --- a/drivers/tty/serial/pch_uart.c +++ b/drivers/tty/serial/pch_uart.c | |||
@@ -1864,4 +1864,8 @@ module_exit(pch_uart_module_exit); | |||
1864 | MODULE_LICENSE("GPL v2"); | 1864 | MODULE_LICENSE("GPL v2"); |
1865 | MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver"); | 1865 | MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver"); |
1866 | module_param(default_baud, uint, S_IRUGO); | 1866 | module_param(default_baud, uint, S_IRUGO); |
1867 | MODULE_PARM_DESC(default_baud, | ||
1868 | "Default BAUD for initial driver state and console (default 9600)"); | ||
1867 | module_param(user_uartclk, uint, S_IRUGO); | 1869 | module_param(user_uartclk, uint, S_IRUGO); |
1870 | MODULE_PARM_DESC(user_uartclk, | ||
1871 | "Override UART default or board specific UART clock"); | ||