From: Christian Storm <[email protected]> As found, e.g., on SIEMENS SIMATIC IPC127E.
Signed-off-by: Christian Storm <[email protected]> --- drivers/watchdog/itco.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/watchdog/itco.c b/drivers/watchdog/itco.c index b7b6e80..f46379d 100644 --- a/drivers/watchdog/itco.c +++ b/drivers/watchdog/itco.c @@ -18,6 +18,7 @@ #define PCI_DEVICE_ID_INTEL_BAYTRAIL 0x0f1c #define PCI_DEVICE_ID_INTEL_WPT_LP 0x9cc3 +#define PCI_DEVICE_ID_INTEL_APL 0x5ae8 #define PMBASE_REG 0x40 # define PMBASE_ADDRMASK 0xff00 @@ -44,7 +45,8 @@ init(EFI_PCI_IO *pci_io, UINT16 pci_vendor_id, UINT16 pci_device_id, if (!pci_io || pci_vendor_id != PCI_VENDOR_ID_INTEL || (pci_device_id != PCI_DEVICE_ID_INTEL_BAYTRAIL && - pci_device_id != PCI_DEVICE_ID_INTEL_WPT_LP)) { + pci_device_id != PCI_DEVICE_ID_INTEL_WPT_LP && + pci_device_id != PCI_DEVICE_ID_INTEL_APL)) { return EFI_UNSUPPORTED; } -- 2.21.0 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/20190403152758.9571-1-christian.storm%40siemens.com. For more options, visit https://groups.google.com/d/optout.
