aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Murphy <[email protected]>2022-02-04 20:16:41 +0000
committerJoerg Roedel <[email protected]>2022-02-14 14:11:04 +0100
commit6efd3b8356693898e87610e52bfecd81c70a419b (patch)
tree72e8a1b591423275b653b582f2a78c0bd3caaf42
parent754e0b0e35608ed5206d6a67a791563c631cec07 (diff)
iommu/rockchip: : Use standard driver registration
It's been a long time since there was any reason to register IOMMU drivers early. Convert to the standard platform driver helper. CC: Heiko Stuebner <[email protected]> Signed-off-by: Robin Murphy <[email protected]> Reviewed-by: Heiko Stuebner <[email protected]> Link: https://lore.kernel.org/r/c08d58bff340da6a829e76d66d2fa090a9718384.1644005728.git.robin.murphy@arm.com Signed-off-by: Joerg Roedel <[email protected]>
-rw-r--r--drivers/iommu/rockchip-iommu.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/iommu/rockchip-iommu.c b/drivers/iommu/rockchip-iommu.c
index 7f23ad61c094..204a93a72572 100644
--- a/drivers/iommu/rockchip-iommu.c
+++ b/drivers/iommu/rockchip-iommu.c
@@ -1407,9 +1407,4 @@ static struct platform_driver rk_iommu_driver = {
.suppress_bind_attrs = true,
},
};
-
-static int __init rk_iommu_init(void)
-{
- return platform_driver_register(&rk_iommu_driver);
-}
-subsys_initcall(rk_iommu_init);
+builtin_platform_driver(rk_iommu_driver);