diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-09 13:06:24 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-13 19:35:26 -0400 |
commit | 8aa2659009714cf5f9ffe7f3e16ccfa8ff0e0d61 (patch) | |
tree | 070526522368d43ab8e0332a849474b44c80e980 /arch/powerpc/lib | |
parent | 1263965f298af611d4992165242202eb194db1c1 (diff) |
powerpc: Fix DMA offset for non-coherent DMA
After Becky's work we can almost have different DMA offsets
between on-chip devices and PCI. Almost because there's a
problem with the non-coherent DMA code that basically ignores
the programmed offset to use the global one for everything.
This fixes it.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/lib')
-rw-r--r-- | arch/powerpc/lib/dma-noncoherent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/lib/dma-noncoherent.c b/arch/powerpc/lib/dma-noncoherent.c index 5d83907f6591..31734c0969cd 100644 --- a/arch/powerpc/lib/dma-noncoherent.c +++ b/arch/powerpc/lib/dma-noncoherent.c | |||
@@ -203,7 +203,7 @@ __dma_alloc_coherent(size_t size, dma_addr_t *handle, gfp_t gfp) | |||
203 | /* | 203 | /* |
204 | * Set the "dma handle" | 204 | * Set the "dma handle" |
205 | */ | 205 | */ |
206 | *handle = page_to_bus(page); | 206 | *handle = page_to_phys(page); |
207 | 207 | ||
208 | do { | 208 | do { |
209 | BUG_ON(!pte_none(*pte)); | 209 | BUG_ON(!pte_none(*pte)); |