aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-10-17 17:58:54 +0000
committersaturneric <[email protected]>2025-10-17 17:58:54 +0000
commit6ee31fa38b9cebaa289bd82c98ba8c6ab0ab5dd8 (patch)
treed67d80c7a9ff3dbddb110f4d6faac20d8374d0cf
parentrefactor(gpio): change set functions to return int (diff)
downloadkernel-6ee31fa38b9cebaa289bd82c98ba8c6ab0ab5dd8.tar.gz
kernel-6ee31fa38b9cebaa289bd82c98ba8c6ab0ab5dd8.zip
chore(iommu): clean up unused code sections
* Removed redundant comments and unused macros * Improves code readability and maintainability
-rw-r--r--drivers/iommu/bcm2712-iommu.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/iommu/bcm2712-iommu.c b/drivers/iommu/bcm2712-iommu.c
index ba12062a274a..4d98de2e3fac 100644
--- a/drivers/iommu/bcm2712-iommu.c
+++ b/drivers/iommu/bcm2712-iommu.c
@@ -534,8 +534,6 @@ static const struct iommu_ops bcm2712_iommu_ops = {
.probe_device = bcm2712_iommu_probe_device,
.release_device = bcm2712_iommu_release_device,
.device_group = bcm2712_iommu_device_group,
- /* Advertise native page sizes as well as 2M, 16K which Linux may prefer */
- .pgsize_bitmap = (SZ_4M | SZ_2M | SZ_1M | SZ_64K | SZ_16K | SZ_4K),
.default_domain_ops = &bcm2712_iommu_domain_ops,
.of_xlate = bcm2712_iommu_of_xlate,
};