diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 12:13:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 12:13:29 -0400 |
commit | 6f3a28f7d1f0a65a78443c273b6e8ec01becf301 (patch) | |
tree | ea57276725b31ba115f44cb5267a7d85b133e6fb /drivers/serial/8250_pci.c | |
parent | 6ebfc0e20b409f13e62bbb84ce70102b49945cfd (diff) | |
parent | 75fde2eddcfcd1dcc87a72dc6cd3c859420b6148 (diff) |
Merge branch 'devel' of master.kernel.org:/home/rmk/linux-2.6-serial
* 'devel' of master.kernel.org:/home/rmk/linux-2.6-serial: (21 commits)
[SERIAL] add PNP IDs for FPI based touchscreens
[SERIAL] Magic SysRq SAK does nothing on serial consoles
[SERIAL] tickle NMI watchdog on serial output.
[SERIAL] Fix oops when removing suspended serial port
[SERIAL] Fix resume handling bug
[SERIAL] Remove wrong asm/serial.h inclusions
[SERIAL] CONFIG_PM=n slim: drivers/serial/8250_pci.c
[SERIAL] OMAP1510 serial fix for 115200 baud
[SERIAL] returning proper error from serial core driver
[SERIAL] Make uart_line_info() correctly tell MMIO from I/O port
[SERIAL] suspend/resume handlers don't have level arg anymore
[SERIAL] 8250 resourse management fixes
[SERIAL] serial_cs: Add quirk for brainboxes 2-port RS232 card
[SERIAL] serial_cs: handle Nokia multi->single port bodge via config quirk
[SERIAL] serial_cs: add configuration quirk
[SERIAL] serial_cs: Convert Oxford 950 / Possio GCC wakeup quirk
[SERIAL] serial_cs: convert IBM post-init handling to a quirk
[SERIAL] serial_cs: allow wildcarded quirks
[SERIAL] serial_cs: convert multi-port table to quirk table
[SERIAL] serial_cs: Use clean up multiport card detection
...
Diffstat (limited to 'drivers/serial/8250_pci.c')
-rw-r--r-- | drivers/serial/8250_pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/serial/8250_pci.c b/drivers/serial/8250_pci.c index 851e4839d6d9..4d0ff8f4a01b 100644 --- a/drivers/serial/8250_pci.c +++ b/drivers/serial/8250_pci.c | |||
@@ -1789,6 +1789,7 @@ static void __devexit pciserial_remove_one(struct pci_dev *dev) | |||
1789 | pci_disable_device(dev); | 1789 | pci_disable_device(dev); |
1790 | } | 1790 | } |
1791 | 1791 | ||
1792 | #ifdef CONFIG_PM | ||
1792 | static int pciserial_suspend_one(struct pci_dev *dev, pm_message_t state) | 1793 | static int pciserial_suspend_one(struct pci_dev *dev, pm_message_t state) |
1793 | { | 1794 | { |
1794 | struct serial_private *priv = pci_get_drvdata(dev); | 1795 | struct serial_private *priv = pci_get_drvdata(dev); |
@@ -1818,6 +1819,7 @@ static int pciserial_resume_one(struct pci_dev *dev) | |||
1818 | } | 1819 | } |
1819 | return 0; | 1820 | return 0; |
1820 | } | 1821 | } |
1822 | #endif | ||
1821 | 1823 | ||
1822 | static struct pci_device_id serial_pci_tbl[] = { | 1824 | static struct pci_device_id serial_pci_tbl[] = { |
1823 | { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V960, | 1825 | { PCI_VENDOR_ID_V3, PCI_DEVICE_ID_V3_V960, |
@@ -2375,8 +2377,10 @@ static struct pci_driver serial_pci_driver = { | |||
2375 | .name = "serial", | 2377 | .name = "serial", |
2376 | .probe = pciserial_init_one, | 2378 | .probe = pciserial_init_one, |
2377 | .remove = __devexit_p(pciserial_remove_one), | 2379 | .remove = __devexit_p(pciserial_remove_one), |
2380 | #ifdef CONFIG_PM | ||
2378 | .suspend = pciserial_suspend_one, | 2381 | .suspend = pciserial_suspend_one, |
2379 | .resume = pciserial_resume_one, | 2382 | .resume = pciserial_resume_one, |
2383 | #endif | ||
2380 | .id_table = serial_pci_tbl, | 2384 | .id_table = serial_pci_tbl, |
2381 | }; | 2385 | }; |
2382 | 2386 | ||