> > diff --git a/drivers/iommu/riscv/iommu-platform.c b/drivers/iommu/riscv/iommu-platform.c > > index da336863f152..382ba2841849 100644 > > --- a/drivers/iommu/riscv/iommu-platform.c > > +++ b/drivers/iommu/riscv/iommu-platform.c > > @@ -81,7 +81,7 @@ static const struct of_device_id riscv_iommu_of_match[] = { > > > > static struct platform_driver riscv_iommu_platform_driver = { > > .probe = riscv_iommu_platform_probe, > > - .remove_new = riscv_iommu_platform_remove, > > + .remove = riscv_iommu_platform_remove, > > .driver = { > > .name = "riscv,iommu", > > .of_match_table = riscv_iommu_of_match, > > diff --git a/drivers/iommu/sprd-iommu.c b/drivers/iommu/sprd-iommu.c > > index a2f4ffe6d949..e84806eee281 100644 > > --- a/drivers/iommu/sprd-iommu.c > > +++ b/drivers/iommu/sprd-iommu.c > > @@ -531,7 +531,7 @@ static struct platform_driver sprd_iommu_driver = { > > .suppress_bind_attrs = true, > > }, > > .probe = sprd_iommu_probe, > > - .remove_new = sprd_iommu_remove, > > + .remove = sprd_iommu_remove, > > }; > > module_platform_driver(sprd_iommu_driver); > > > > base-commit: c88416ba074a8913cf6d61b789dd834bbca6681c > Thanks, LGTM for iommu/riscv part of the patch. Reviewed-by: Tomasz Jeznach <tjeznach@xxxxxxxxxxxx>