diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-03-04 06:02:41 (GMT) |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-03-09 04:03:25 (GMT) |
commit | 57190708f1f52d732d94fa21a8e576302d384d33 (patch) | |
tree | e288959df1d9ed7cb4664ce17b792e065a4d97a1 /arch/powerpc/platforms/cell/iommu.c | |
parent | 9874777016e06ad2df420237963e81389776cb6d (diff) | |
download | linux-fsl-qoriq-57190708f1f52d732d94fa21a8e576302d384d33.tar.xz |
[POWERPC] Create and use get_pci_dma_ops()
This allows us to hide pci_dma_ops.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/cell/iommu.c')
-rw-r--r-- | arch/powerpc/platforms/cell/iommu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/cell/iommu.c b/arch/powerpc/platforms/cell/iommu.c index d0e02ea..7c953cc 100644 --- a/arch/powerpc/platforms/cell/iommu.c +++ b/arch/powerpc/platforms/cell/iommu.c @@ -496,7 +496,7 @@ static void cell_dma_dev_setup(struct device *dev) struct dev_archdata *archdata = &dev->archdata; /* If we run without iommu, no need to do anything */ - if (pci_dma_ops == &dma_direct_ops) + if (get_pci_dma_ops() == &dma_direct_ops) return; /* Current implementation uses the first window available in that @@ -530,7 +530,7 @@ static int cell_of_bus_notify(struct notifier_block *nb, unsigned long action, return 0; /* We use the PCI DMA ops */ - dev->archdata.dma_ops = pci_dma_ops; + dev->archdata.dma_ops = get_pci_dma_ops(); cell_dma_dev_setup(dev); |