diff options
author | Suhui <[email protected]> | 2023-06-14 10:47:02 +0800 |
---|---|---|
committer | Joerg Roedel <[email protected]> | 2023-06-16 16:38:31 +0200 |
commit | 82d9654f92fd858d3b36c6f189dcfa850f2dfa29 (patch) | |
tree | 10dfb68bf00f66b372a7c608478e463855256652 | |
parent | 44c026a73be8038f03dbdeef028b642880cf1511 (diff) |
iommu/vt-d: Remove unnecessary (void*) conversions
No need cast (void*) to (struct root_entry *).
Signed-off-by: Suhui <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Lu Baolu <[email protected]>
Signed-off-by: Joerg Roedel <[email protected]>
-rw-r--r-- | drivers/iommu/intel/iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c index b871a6afd803..323fa1a93765 100644 --- a/drivers/iommu/intel/iommu.c +++ b/drivers/iommu/intel/iommu.c @@ -1185,7 +1185,7 @@ static int iommu_alloc_root_entry(struct intel_iommu *iommu) { struct root_entry *root; - root = (struct root_entry *)alloc_pgtable_page(iommu->node, GFP_ATOMIC); + root = alloc_pgtable_page(iommu->node, GFP_ATOMIC); if (!root) { pr_err("Allocating root entry for %s failed\n", iommu->name); |