diff options
author | Rolf Eike Beer <eike-kernel@sf-tec.de> | 2005-07-27 14:43:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 19:25:51 -0400 |
commit | b7343f01e326374e69666ca6001bdb6a7c67e9f7 (patch) | |
tree | 2c1dc0a41127956dc5661a1fecb46ab25f136550 /drivers/char/watchdog/alim1535_wdt.c | |
parent | bba0e4670a4e1841a96b561dcc60ebe335049891 (diff) |
[PATCH] watchdog: add missing 0x in alim1535_wdt.c
Usually the device IDs are given in hex. This one is a bit strange: it is
without 0x in the first place and used with it some lines later. I suspect
the first one to be the wrong.
Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/watchdog/alim1535_wdt.c')
-rw-r--r-- | drivers/char/watchdog/alim1535_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/watchdog/alim1535_wdt.c b/drivers/char/watchdog/alim1535_wdt.c index 35dcbf8be7d1..0715fcf0aed4 100644 --- a/drivers/char/watchdog/alim1535_wdt.c +++ b/drivers/char/watchdog/alim1535_wdt.c | |||
@@ -317,7 +317,7 @@ static int ali_notify_sys(struct notifier_block *this, unsigned long code, void | |||
317 | */ | 317 | */ |
318 | 318 | ||
319 | static struct pci_device_id ali_pci_tbl[] = { | 319 | static struct pci_device_id ali_pci_tbl[] = { |
320 | { PCI_VENDOR_ID_AL, 1535, PCI_ANY_ID, PCI_ANY_ID,}, | 320 | { PCI_VENDOR_ID_AL, 0x1535, PCI_ANY_ID, PCI_ANY_ID,}, |
321 | { 0, }, | 321 | { 0, }, |
322 | }; | 322 | }; |
323 | MODULE_DEVICE_TABLE(pci, ali_pci_tbl); | 323 | MODULE_DEVICE_TABLE(pci, ali_pci_tbl); |