@@ -1362,6 +1362,14 @@ ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
ec_parse_io_ports, ec);
if (ACPI_FAILURE(status))
return status;
+ /*
+ * It's better to evaluate _STA to determine if the device is
+ * valid. But that could potentially trigger issues related to
+ * the unknown orders of _INI/_STA evaluations.
+ * However we can abort due to invalid _CRS information here.
+ */
+ if (ec->data_addr == 0 || ec->command_addr == 0)
+ return AE_OK;
/* Get GPE bit assignment (EC events). */
/* TODO: Add support for _GPE returning a package */