diff options
author | Namhyung Kim <namhyung@gmail.com> | 2010-12-07 09:27:41 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-12-10 18:20:14 -0500 |
commit | 6835a209f6c24b3704aa58d8b558a513a5a08c52 (patch) | |
tree | c502ff85e4e6a739884fa40f484e581c07b158e4 /drivers/char/rocket.c | |
parent | a3ae0fc34f58e7163b7724feb3d77aa4603f0dc3 (diff) |
rocket: fix compiler warning on rocket_pci_ids
Annotate rocket_pci_ids as '__used' to fix following warning:
CC drivers/char/rocket.o
drivers/char/rocket.c:1767: warning: ‘rocket_pci_ids’ defined but not used
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/char/rocket.c')
-rw-r--r-- | drivers/char/rocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/rocket.c b/drivers/char/rocket.c index 86308830ac42..3e4e73a0d7c1 100644 --- a/drivers/char/rocket.c +++ b/drivers/char/rocket.c | |||
@@ -1764,7 +1764,7 @@ static void rp_flush_buffer(struct tty_struct *tty) | |||
1764 | 1764 | ||
1765 | #ifdef CONFIG_PCI | 1765 | #ifdef CONFIG_PCI |
1766 | 1766 | ||
1767 | static struct pci_device_id __devinitdata rocket_pci_ids[] = { | 1767 | static struct pci_device_id __devinitdata __used rocket_pci_ids[] = { |
1768 | { PCI_DEVICE(PCI_VENDOR_ID_RP, PCI_ANY_ID) }, | 1768 | { PCI_DEVICE(PCI_VENDOR_ID_RP, PCI_ANY_ID) }, |
1769 | { } | 1769 | { } |
1770 | }; | 1770 | }; |