aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2012-01-14 19:34:34 +0800
committerWim Van Sebroeck <wim@iguana.be>2012-01-27 09:54:12 +0100
commit0318e286f9a73547dedfd9f733671f4941efb0e2 (patch)
tree145eb616cde2f0db96feb34f1dd9dfbb7a806e73 /drivers
parentwatchdog: omap_wdt.c: Fix the mismatch of pm_runtime enable and disable (diff)
downloadlinux-dev-0318e286f9a73547dedfd9f733671f4941efb0e2.tar.xz
linux-dev-0318e286f9a73547dedfd9f733671f4941efb0e2.zip
watchdog: via_wdt: Staticise wdt_pci_table
It is only used in this driver, so no need to make the symbol global. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Marc Vertes <marc.vertes@sigfox.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/watchdog/via_wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/via_wdt.c b/drivers/watchdog/via_wdt.c
index 026b4bbfa0aa..8b24b000062e 100644
--- a/drivers/watchdog/via_wdt.c
+++ b/drivers/watchdog/via_wdt.c
@@ -233,7 +233,7 @@ static void __devexit wdt_remove(struct pci_dev *pdev)
pci_disable_device(pdev);
}
-DEFINE_PCI_DEVICE_TABLE(wdt_pci_table) = {
+static DEFINE_PCI_DEVICE_TABLE(wdt_pci_table) = {
{ PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_CX700) },
{ PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX800) },
{ PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX855) },