From: Namhyung Kim Date: Tue, 7 Dec 2010 14:27:42 +0000 (+0900) Subject: specialix: fix compiler warning on specialix_pci_tbl X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fd0f5c54eeb66e3e89e3cdd34c5abf8d5fbcf61c;p=linux-beck.git specialix: fix compiler warning on specialix_pci_tbl Annotate specialx_pci_tbl as '__used' to fix following warning: CC drivers/char/specialix.o drivers/char/specialix.c:2358: warning: ‘specialx_pci_tbl’ defined but not used Signed-off-by: Namhyung Kim Cc: Roger Wolff Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/specialix.c b/drivers/char/specialix.c index 9f8495b4fc8f..499bb0ffd834 100644 --- a/drivers/char/specialix.c +++ b/drivers/char/specialix.c @@ -2356,7 +2356,7 @@ static void __exit specialix_exit_module(void) func_exit(); } -static struct pci_device_id specialx_pci_tbl[] __devinitdata = { +static struct pci_device_id specialx_pci_tbl[] __devinitdata __used = { { PCI_DEVICE(PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_IO8) }, { } };