summaryrefslogtreecommitdiffstats
path: root/drivers/iommu
diff options
context:
space:
mode:
authorDavid Woodhouse2014-03-11 04:01:21 +0100
committerDavid Woodhouse2014-03-24 15:08:07 +0100
commit46333e375f3228196e8cb741d817165f9793b46c (patch)
tree142fcaa30e327199b2fb28f95635e865cd2a830e /drivers/iommu
parentiommu/vt-d: Remove pdev from intel_iommu_attach_device() (diff)
downloadkernel-qcow2-linux-46333e375f3228196e8cb741d817165f9793b46c.tar.gz
kernel-qcow2-linux-46333e375f3228196e8cb741d817165f9793b46c.tar.xz
kernel-qcow2-linux-46333e375f3228196e8cb741d817165f9793b46c.zip
iommu/vt-d: Remove to_pci_dev() in intel_map_page()
It might not be... Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/iommu')
-rw-r--r--drivers/iommu/intel-iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 37ce54b188f3..0a8e166a57b0 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -3023,7 +3023,7 @@ static dma_addr_t intel_map_page(struct device *dev, struct page *page,
struct dma_attrs *attrs)
{
return __intel_map_single(dev, page_to_phys(page) + offset, size,
- dir, to_pci_dev(dev)->dma_mask);
+ dir, *dev->dma_mask);
}
static void flush_unmaps(void)