iommu/core: Check for the right function pointer in iommu_map()
Check for the ->map and not the ->unmap pointer. Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
@@ -995,7 +995,7 @@ int iommu_map(struct iommu_domain *domain, unsigned long iova,
|
|||||||
size_t orig_size = size;
|
size_t orig_size = size;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
if (unlikely(domain->ops->unmap == NULL ||
|
if (unlikely(domain->ops->map == NULL ||
|
||||||
domain->ops->pgsize_bitmap == 0UL))
|
domain->ops->pgsize_bitmap == 0UL))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user