aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/Kconfig4
-rw-r--r--drivers/watchdog/hpwdt.c12
2 files changed, 8 insertions, 8 deletions
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index 4d2992aadfb7..cee25e401440 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -574,11 +574,11 @@ config IT87_WDT
574 be called it87_wdt. 574 be called it87_wdt.
575 575
576config HP_WATCHDOG 576config HP_WATCHDOG
577 tristate "HP Proliant iLO 2 Hardware Watchdog Timer" 577 tristate "HP Proliant iLO2+ Hardware Watchdog Timer"
578 depends on X86 578 depends on X86
579 help 579 help
580 A software monitoring watchdog and NMI sourcing driver. This driver 580 A software monitoring watchdog and NMI sourcing driver. This driver
581 will detect lockups and provide stack trace. Also, when an NMI 581 will detect lockups and provide a stack trace. Also, when an NMI
582 occurs this driver will make the necessary BIOS calls to log 582 occurs this driver will make the necessary BIOS calls to log
583 the cause of the NMI. This is a driver that will only load on a 583 the cause of the NMI. This is a driver that will only load on a
584 HP ProLiant system with a minimum of iLO2 support. 584 HP ProLiant system with a minimum of iLO2 support.
diff --git a/drivers/watchdog/hpwdt.c b/drivers/watchdog/hpwdt.c
index f0ecb14990df..e18f6b9f7947 100644
--- a/drivers/watchdog/hpwdt.c
+++ b/drivers/watchdog/hpwdt.c
@@ -48,8 +48,8 @@ static unsigned long __iomem *hpwdt_timer_reg;
48static unsigned long __iomem *hpwdt_timer_con; 48static unsigned long __iomem *hpwdt_timer_con;
49 49
50static struct pci_device_id hpwdt_devices[] = { 50static struct pci_device_id hpwdt_devices[] = {
51 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ, 0xB203) }, 51 { PCI_DEVICE(PCI_VENDOR_ID_COMPAQ, 0xB203) }, /* iLO2 */
52 { PCI_DEVICE(PCI_VENDOR_ID_HP, 0x3306) }, 52 { PCI_DEVICE(PCI_VENDOR_ID_HP, 0x3306) }, /* iLO3 */
53 {0}, /* terminate list */ 53 {0}, /* terminate list */
54}; 54};
55MODULE_DEVICE_TABLE(pci, hpwdt_devices); 55MODULE_DEVICE_TABLE(pci, hpwdt_devices);
@@ -548,7 +548,7 @@ static const struct watchdog_info ident = {
548 .options = WDIOF_SETTIMEOUT | 548 .options = WDIOF_SETTIMEOUT |
549 WDIOF_KEEPALIVEPING | 549 WDIOF_KEEPALIVEPING |
550 WDIOF_MAGICCLOSE, 550 WDIOF_MAGICCLOSE,
551 .identity = "HP iLO2 HW Watchdog Timer", 551 .identity = "HP iLO2+ HW Watchdog Timer",
552}; 552};
553 553
554static long hpwdt_ioctl(struct file *file, unsigned int cmd, 554static long hpwdt_ioctl(struct file *file, unsigned int cmd,
@@ -654,13 +654,13 @@ static int __devinit hpwdt_init_one(struct pci_dev *dev,
654 hpwdt_check_nmi_sourcing(dev); 654 hpwdt_check_nmi_sourcing(dev);
655 655
656 /* 656 /*
657 * First let's find out if we are on an iLO2 server. We will 657 * First let's find out if we are on an iLO2+ server. We will
658 * not run on a legacy ASM box. 658 * not run on a legacy ASM box.
659 * So we only support the G5 ProLiant servers and higher. 659 * So we only support the G5 ProLiant servers and higher.
660 */ 660 */
661 if (dev->subsystem_vendor != PCI_VENDOR_ID_HP) { 661 if (dev->subsystem_vendor != PCI_VENDOR_ID_HP) {
662 dev_warn(&dev->dev, 662 dev_warn(&dev->dev,
663 "This server does not have an iLO2 ASIC.\n"); 663 "This server does not have an iLO2+ ASIC.\n");
664 return -ENODEV; 664 return -ENODEV;
665 } 665 }
666 666
@@ -674,7 +674,7 @@ static int __devinit hpwdt_init_one(struct pci_dev *dev,
674 pci_mem_addr = pci_iomap(dev, 1, 0x80); 674 pci_mem_addr = pci_iomap(dev, 1, 0x80);
675 if (!pci_mem_addr) { 675 if (!pci_mem_addr) {
676 dev_warn(&dev->dev, 676 dev_warn(&dev->dev,
677 "Unable to detect the iLO2 server memory.\n"); 677 "Unable to detect the iLO2+ server memory.\n");
678 retval = -ENOMEM; 678 retval = -ENOMEM;
679 goto error_pci_iomap; 679 goto error_pci_iomap;
680 } 680 }