diff options
| -rw-r--r-- | drivers/iommu/dmar.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/iommu/dmar.c b/drivers/iommu/dmar.c index f7890edb22f..a7967ceb79e 100644 --- a/drivers/iommu/dmar.c +++ b/drivers/iommu/dmar.c @@ -129,7 +129,8 @@ int __init dmar_parse_dev_scope(void *start, void *end, int *cnt,  		if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT ||  		    scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE)  			(*cnt)++; -		else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC) { +		else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC && +			scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) {  			pr_warn("Unsupported device scope\n");  		}  		start += scope->length;  |