diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2026-05-19 17:30:01 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2026-05-19 17:30:01 +0000 |
| commit | 8de34a84224b9a353bc0a9d6d3f95540b0e72707 (patch) | |
| tree | 1e5c68488087e78a37254db5f142dc30e710b1e4 | |
| parent | 8c9dc47b5fcaf58a89b1511118b78a65737b20cc (diff) | |
arm64/iommu: Add a missing close parenthesis
Fixes: 6dc813301a17 ("sys: Use is_pci_device instead of direct comparisons to devclasses")
Sponsored by: Chelsio Communications
| -rw-r--r-- | sys/arm64/iommu/smmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm64/iommu/smmu.c b/sys/arm64/iommu/smmu.c index 265f1e56f892..2d34b9177ed7 100644 --- a/sys/arm64/iommu/smmu.c +++ b/sys/arm64/iommu/smmu.c @@ -1861,7 +1861,7 @@ smmu_ctx_init(device_t dev, struct iommu_ctx *ioctx) smmu_init_ste(sc, domain->cd, ctx->sid, ctx->bypass); - if (is_pci_device((ctx->dev)) + if (is_pci_device((ctx->dev))) if (iommu_is_buswide_ctx(iodom->iommu, pci_get_bus(ctx->dev))) smmu_set_buswide(dev, domain, ctx); |
