diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2013-09-01 14:26:37 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 17:26:10 -0400 |
commit | 52592da32b85e8be7e6ab534059b9457b3dea4e5 (patch) | |
tree | 3d7e104acb107e148b7649661f18c8bd2d58bfd0 | |
parent | 12d493c791876519393a483fa46bc4893379d523 (diff) |
serial: pch_uart: Add MODULE_DEVICE_TABLE
pch_uart currently isn't auto-loaded if built as a module.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/pch_uart.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c index 52379e56a31e..e0fbf87478b9 100644 --- a/drivers/tty/serial/pch_uart.c +++ b/drivers/tty/serial/pch_uart.c | |||
@@ -2003,6 +2003,8 @@ module_exit(pch_uart_module_exit); | |||
2003 | 2003 | ||
2004 | MODULE_LICENSE("GPL v2"); | 2004 | MODULE_LICENSE("GPL v2"); |
2005 | MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver"); | 2005 | MODULE_DESCRIPTION("Intel EG20T PCH UART PCI Driver"); |
2006 | MODULE_DEVICE_TABLE(pci, pch_uart_pci_id); | ||
2007 | |||
2006 | module_param(default_baud, uint, S_IRUGO); | 2008 | module_param(default_baud, uint, S_IRUGO); |
2007 | MODULE_PARM_DESC(default_baud, | 2009 | MODULE_PARM_DESC(default_baud, |
2008 | "Default BAUD for initial driver state and console (default 9600)"); | 2010 | "Default BAUD for initial driver state and console (default 9600)"); |