Commit c54fb811745967732bc9e31d837e0c9925e12b4b

Authored by Seth Heasley
Committed by Wim Van Sebroeck
1 parent 22a5b566c8

watchdog: iTCO_wdt: TCO Watchdog patch for Intel Patsburg PCH

This patch adds an additional LPC Controller DeviceID for the Intel Patsburg PCH for TCO Watchdog.

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

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

drivers/watchdog/iTCO_wdt.c
... ... @@ -32,6 +32,7 @@
32 32 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
33 33 * document number 320066-003, 320257-008: EP80597 (IICH)
34 34 * document number TBD : Cougar Point (CPT)
  35 + * document number TBD : Patsburg (PBG)
35 36 */
36 37  
37 38 /*
... ... @@ -146,7 +147,8 @@
146 147 TCO_CPT29, /* Cougar Point */
147 148 TCO_CPT30, /* Cougar Point */
148 149 TCO_CPT31, /* Cougar Point */
149   - TCO_PBG, /* Patsburg */
  150 + TCO_PBG1, /* Patsburg */
  151 + TCO_PBG2, /* Patsburg */
150 152 };
151 153  
152 154 static struct {
... ... @@ -235,6 +237,7 @@
235 237 {"Cougar Point", 2},
236 238 {"Cougar Point", 2},
237 239 {"Patsburg", 2},
  240 + {"Patsburg", 2},
238 241 {NULL, 0}
239 242 };
240 243  
... ... @@ -350,7 +353,8 @@
350 353 { ITCO_PCI_DEVICE(0x1c5d, TCO_CPT29)},
351 354 { ITCO_PCI_DEVICE(0x1c5e, TCO_CPT30)},
352 355 { ITCO_PCI_DEVICE(0x1c5f, TCO_CPT31)},
353   - { ITCO_PCI_DEVICE(0x1d40, TCO_PBG)},
  356 + { ITCO_PCI_DEVICE(0x1d40, TCO_PBG1)},
  357 + { ITCO_PCI_DEVICE(0x1d41, TCO_PBG2)},
354 358 { 0, }, /* End of list */
355 359 };
356 360 MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl);