diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2007-05-08 03:27:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:04 -0400 |
commit | 8d5916d3e0e1cff2e9ecf7fc2d191a2cf2146bd5 (patch) | |
tree | 5e5bb6635d0dfe583ab1e0619a7574c0dc68a94f /drivers | |
parent | 1eeb66a1bb973534dc3d064920a5ca683823372e (diff) |
Char: rocket, add MODULE_DEVICE_TABLE
rocket, add MODULE_DEVICE_TABLE
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/rocket.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/char/rocket.c b/drivers/char/rocket.c index e2a8eb84004b..aa4cc12bbcb1 100644 --- a/drivers/char/rocket.c +++ b/drivers/char/rocket.c | |||
@@ -1848,6 +1848,12 @@ static void rp_flush_buffer(struct tty_struct *tty) | |||
1848 | 1848 | ||
1849 | #ifdef CONFIG_PCI | 1849 | #ifdef CONFIG_PCI |
1850 | 1850 | ||
1851 | static struct pci_device_id __devinitdata rocket_pci_ids[] = { | ||
1852 | { PCI_DEVICE(PCI_VENDOR_ID_RP, PCI_ANY_ID) }, | ||
1853 | { } | ||
1854 | }; | ||
1855 | MODULE_DEVICE_TABLE(pci, rocket_pci_ids); | ||
1856 | |||
1851 | /* | 1857 | /* |
1852 | * Called when a PCI card is found. Retrieves and stores model information, | 1858 | * Called when a PCI card is found. Retrieves and stores model information, |
1853 | * init's aiopic and serial port hardware. | 1859 | * init's aiopic and serial port hardware. |