Skip to content

Commit 86c5eac

Browse files
Chen Niwilldeacon
authored andcommitted
iommu/amd: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Fixes: c9b258c ("iommu/amd: Prepare for generic IO page table framework") Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Reviewed-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> Link: https://lore.kernel.org/r/20240716072545.968690-1-nichen@iscas.ac.cn Signed-off-by: Will Deacon <will@kernel.org>
1 parent 630482e commit 86c5eac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/iommu/amd/io_pgtable.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -588,9 +588,9 @@ static struct io_pgtable *v1_alloc_pgtable(struct io_pgtable_cfg *cfg, void *coo
588588
{
589589
struct amd_io_pgtable *pgtable = io_pgtable_cfg_to_data(cfg);
590590

591-
cfg->pgsize_bitmap = AMD_IOMMU_PGSIZES,
592-
cfg->ias = IOMMU_IN_ADDR_BIT_SIZE,
593-
cfg->oas = IOMMU_OUT_ADDR_BIT_SIZE,
591+
cfg->pgsize_bitmap = AMD_IOMMU_PGSIZES;
592+
cfg->ias = IOMMU_IN_ADDR_BIT_SIZE;
593+
cfg->oas = IOMMU_OUT_ADDR_BIT_SIZE;
594594
cfg->tlb = &v1_flush_ops;
595595

596596
pgtable->iop.ops.map_pages = iommu_v1_map_pages;

0 commit comments

Comments
 (0)