diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-12-03 08:26:37 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-08 17:09:07 -0800 |
commit | 311df74ade503af204ac6b8ee55ce30ff2411398 (patch) | |
tree | 3b4a43aa6f39eec16f707458e2e33320284db0d0 /drivers/tty/serial/pch_uart.c | |
parent | 6b471a9840eefc96abb3fbd9eb71e1eb93399daa (diff) | |
download | op-kernel-dev-311df74ade503af204ac6b8ee55ce30ff2411398.zip op-kernel-dev-311df74ade503af204ac6b8ee55ce30ff2411398.tar.gz |
tty: remove DEFINE_PCI_DEVICE_TABLE macro
Don't use DEFINE_PCI_DEVICE_TABLE macro, because this macro
is not preferred.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/pch_uart.c')
-rw-r--r-- | drivers/tty/serial/pch_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c index 11c862c..9cbd3ac 100644 --- a/drivers/tty/serial/pch_uart.c +++ b/drivers/tty/serial/pch_uart.c @@ -1906,7 +1906,7 @@ static int pch_uart_pci_resume(struct pci_dev *pdev) #define pch_uart_pci_resume NULL #endif -static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id) = { +static const struct pci_device_id pch_uart_pci_id[] = { {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8811), .driver_data = pch_et20t_uart0}, {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8812), |