diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2014-03-11 04:01:21 +0100 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2014-03-24 15:08:07 +0100 |
commit | 46333e375f3228196e8cb741d817165f9793b46c (patch) | |
tree | 142fcaa30e327199b2fb28f95635e865cd2a830e /drivers/iommu/intel-iommu.c | |
parent | iommu/vt-d: Remove pdev from intel_iommu_attach_device() (diff) | |
download | linux-46333e375f3228196e8cb741d817165f9793b46c.tar.xz 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/intel-iommu.c')
-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 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) |