Commit 203f8d893ed772ec8589cfd3c7d1af312643b703

Authored by Seth Heasley
Committed by Wim Van Sebroeck
1 parent d38bd479a1

watchdog: iTCO_wdt: TCO Watchdog patch for Intel DH89xxCC PCH

This patch adds the DeviceIDs for TCO Watchdog on the Intel DH89xxCC PCH.

Signed-off-by: Seth Heasley <seth.heasley@intel.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>

Showing 1 changed file with 5 additions and 1 deletions Side-by-side Diff

drivers/watchdog/iTCO_wdt.c
... ... @@ -32,8 +32,9 @@
32 32 * document number 319973-002, 319974-002: 82801J (ICH10)
33 33 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
34 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 36 * document number TBD : Patsburg (PBG)
  37 + * document number TBD : DH89xxCC
37 38 */
38 39  
39 40 /*
... ... @@ -151,6 +152,7 @@
151 152 TCO_CPT31, /* Cougar Point */
152 153 TCO_PBG1, /* Patsburg */
153 154 TCO_PBG2, /* Patsburg */
  155 + TCO_DH89XXCC, /* DH89xxCC */
154 156 };
155 157  
156 158 static struct {
... ... @@ -241,6 +243,7 @@
241 243 {"Cougar Point", 2},
242 244 {"Patsburg", 2},
243 245 {"Patsburg", 2},
  246 + {"DH89xxCC", 2},
244 247 {NULL, 0}
245 248 };
246 249  
... ... @@ -359,6 +362,7 @@
359 362 { ITCO_PCI_DEVICE(0x1c5f, TCO_CPT31)},
360 363 { ITCO_PCI_DEVICE(0x1d40, TCO_PBG1)},
361 364 { ITCO_PCI_DEVICE(0x1d41, TCO_PBG2)},
  365 + { ITCO_PCI_DEVICE(0x2310, TCO_DH89XXCC)},
362 366 { 0, }, /* End of list */
363 367 };
364 368 MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl);