Skip to content

Commit

Permalink
iommu/mediatek: Fix semicolon code style issue
Browse files Browse the repository at this point in the history
Delete a superfluous semicolon in mtk_iommu_add_device().

Signed-off-by: Yang Wei <yang.wei9@zte.com.cn>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
  • Loading branch information
Yang Wei authored and Joerg Roedel committed Mar 1, 2019
1 parent 5908e6b commit a947a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/iommu/mtk_iommu_v1.c
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ static int mtk_iommu_add_device(struct device *dev)
return err;
}

return iommu_device_link(&data->iommu, dev);;
return iommu_device_link(&data->iommu, dev);
}

static void mtk_iommu_remove_device(struct device *dev)
Expand Down

0 comments on commit a947a45

Please sign in to comment.