diff options
Diffstat (limited to 'drivers/watchdog/alim1535_wdt.c')
-rw-r--r-- | drivers/watchdog/alim1535_wdt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/watchdog/alim1535_wdt.c b/drivers/watchdog/alim1535_wdt.c index fa4d36033552..f16dcbd475fb 100644 --- a/drivers/watchdog/alim1535_wdt.c +++ b/drivers/watchdog/alim1535_wdt.c | |||
@@ -301,7 +301,7 @@ static int ali_notify_sys(struct notifier_block *this, | |||
301 | * want to register another driver on the same PCI id. | 301 | * want to register another driver on the same PCI id. |
302 | */ | 302 | */ |
303 | 303 | ||
304 | static struct pci_device_id ali_pci_tbl[] __used = { | 304 | static DEFINE_PCI_DEVICE_TABLE(ali_pci_tbl) __used = { |
305 | { PCI_VENDOR_ID_AL, 0x1533, PCI_ANY_ID, PCI_ANY_ID,}, | 305 | { PCI_VENDOR_ID_AL, 0x1533, PCI_ANY_ID, PCI_ANY_ID,}, |
306 | { PCI_VENDOR_ID_AL, 0x1535, PCI_ANY_ID, PCI_ANY_ID,}, | 306 | { PCI_VENDOR_ID_AL, 0x1535, PCI_ANY_ID, PCI_ANY_ID,}, |
307 | { 0, }, | 307 | { 0, }, |
@@ -362,12 +362,12 @@ static int __init ali_find_watchdog(void) | |||
362 | */ | 362 | */ |
363 | 363 | ||
364 | static const struct file_operations ali_fops = { | 364 | static const struct file_operations ali_fops = { |
365 | .owner = THIS_MODULE, | 365 | .owner = THIS_MODULE, |
366 | .llseek = no_llseek, | 366 | .llseek = no_llseek, |
367 | .write = ali_write, | 367 | .write = ali_write, |
368 | .unlocked_ioctl = ali_ioctl, | 368 | .unlocked_ioctl = ali_ioctl, |
369 | .open = ali_open, | 369 | .open = ali_open, |
370 | .release = ali_release, | 370 | .release = ali_release, |
371 | }; | 371 | }; |
372 | 372 | ||
373 | static struct miscdevice ali_miscdev = { | 373 | static struct miscdevice ali_miscdev = { |