Commit 86c5eac3 authored by Chen Ni's avatar Chen Ni Committed by Will Deacon
Browse files

iommu/amd: Convert comma to semicolon



Replace a comma between expression statements by a semicolon.

Fixes: c9b258c6 ("iommu/amd: Prepare for generic IO page table framework")
Signed-off-by: default avatarChen Ni <nichen@iscas.ac.cn>
Reviewed-by: default avatarSuravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Link: https://lore.kernel.org/r/20240716072545.968690-1-nichen@iscas.ac.cn


Signed-off-by: default avatarWill Deacon <will@kernel.org>
parent 630482ee
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -588,9 +588,9 @@ static struct io_pgtable *v1_alloc_pgtable(struct io_pgtable_cfg *cfg, void *coo
{
	struct amd_io_pgtable *pgtable = io_pgtable_cfg_to_data(cfg);

	cfg->pgsize_bitmap  = AMD_IOMMU_PGSIZES,
	cfg->ias            = IOMMU_IN_ADDR_BIT_SIZE,
	cfg->oas            = IOMMU_OUT_ADDR_BIT_SIZE,
	cfg->pgsize_bitmap  = AMD_IOMMU_PGSIZES;
	cfg->ias            = IOMMU_IN_ADDR_BIT_SIZE;
	cfg->oas            = IOMMU_OUT_ADDR_BIT_SIZE;
	cfg->tlb            = &v1_flush_ops;

	pgtable->iop.ops.map_pages    = iommu_v1_map_pages;