.. | .. |
---|
12 | 12 | #define ICH_RES_MEM_OFF 2 |
---|
13 | 13 | #define ICH_RES_MEM_GCS_PMC 0 |
---|
14 | 14 | |
---|
| 15 | +/** |
---|
| 16 | + * struct itco_wdt_platform_data - iTCO_wdt platform data |
---|
| 17 | + * @name: Name of the platform |
---|
| 18 | + * @version: iTCO version |
---|
| 19 | + * @no_reboot_use_pmc: Use PMC BXT API to set and clear NO_REBOOT bit |
---|
| 20 | + */ |
---|
15 | 21 | struct itco_wdt_platform_data { |
---|
16 | 22 | char name[32]; |
---|
17 | 23 | unsigned int version; |
---|
18 | | - /* private data to be passed to update_no_reboot_bit API */ |
---|
19 | | - void *no_reboot_priv; |
---|
20 | | - /* pointer for platform specific no reboot update function */ |
---|
21 | | - int (*update_no_reboot_bit)(void *priv, bool set); |
---|
| 24 | + bool no_reboot_use_pmc; |
---|
22 | 25 | }; |
---|
23 | 26 | |
---|
24 | 27 | #endif /* _ITCO_WDT_H_ */ |
---|