aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/watchdog/iTCO_wdt.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/watchdog/iTCO_wdt.c b/drivers/watchdog/iTCO_wdt.c
index db164153239e..2c6c2b4ad8bf 100644
--- a/drivers/watchdog/iTCO_wdt.c
+++ b/drivers/watchdog/iTCO_wdt.c
@@ -32,8 +32,9 @@
32 * document number 319973-002, 319974-002: 82801J (ICH10) 32 * document number 319973-002, 319974-002: 82801J (ICH10)
33 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH) 33 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
34 * document number 320066-003, 320257-008: EP80597 (IICH) 34 * document number 320066-003, 320257-008: EP80597 (IICH)
35 * document number TBD : Cougar Point (CPT) 35 * document number 324645-001, 324646-001: Cougar Point (CPT)
36 * document number TBD : Patsburg (PBG) 36 * document number TBD : Patsburg (PBG)
37 * document number TBD : DH89xxCC
37 */ 38 */
38 39
39/* 40/*
@@ -151,6 +152,7 @@ enum iTCO_chipsets {
151 TCO_CPT31, /* Cougar Point */ 152 TCO_CPT31, /* Cougar Point */
152 TCO_PBG1, /* Patsburg */ 153 TCO_PBG1, /* Patsburg */
153 TCO_PBG2, /* Patsburg */ 154 TCO_PBG2, /* Patsburg */
155 TCO_DH89XXCC, /* DH89xxCC */
154}; 156};
155 157
156static struct { 158static struct {
@@ -241,6 +243,7 @@ static struct {
241 {"Cougar Point", 2}, 243 {"Cougar Point", 2},
242 {"Patsburg", 2}, 244 {"Patsburg", 2},
243 {"Patsburg", 2}, 245 {"Patsburg", 2},
246 {"DH89xxCC", 2},
244 {NULL, 0} 247 {NULL, 0}
245}; 248};
246 249
@@ -359,6 +362,7 @@ static struct pci_device_id iTCO_wdt_pci_tbl[] = {
359 { ITCO_PCI_DEVICE(0x1c5f, TCO_CPT31)}, 362 { ITCO_PCI_DEVICE(0x1c5f, TCO_CPT31)},
360 { ITCO_PCI_DEVICE(0x1d40, TCO_PBG1)}, 363 { ITCO_PCI_DEVICE(0x1d40, TCO_PBG1)},
361 { ITCO_PCI_DEVICE(0x1d41, TCO_PBG2)}, 364 { ITCO_PCI_DEVICE(0x1d41, TCO_PBG2)},
365 { ITCO_PCI_DEVICE(0x2310, TCO_DH89XXCC)},
362 { 0, }, /* End of list */ 366 { 0, }, /* End of list */
363}; 367};
364MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl); 368MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl);