@@ -37,23 +37,13 @@ pgprot_t pgprot_dmacoherent(pgprot_t prot)
void *arch_dma_alloc(struct device *dev, size_t size, dma_addr_t *dma_handle,
gfp_t gfp, unsigned long attrs)
{
- void *ret;
-
- if (dev == NULL || (*dev->dma_mask < 0xffffffff))
- gfp |= GFP_DMA;
- ret = (void *)__get_free_pages(gfp, get_order(size));
-
- if (ret != NULL) {
- memset(ret, 0, size);
- *dma_handle = virt_to_phys(ret);
- }
- return ret;
+ return NULL;
}
void arch_dma_free(struct device *dev, size_t size, void *vaddr,
dma_addr_t dma_handle, unsigned long attrs)
{
- free_pages((unsigned long)vaddr, get_order(size));
+ WARN_ON_ONCE(1);
}
#endif /* CONFIG_MMU && !CONFIG_COLDFIRE */
m68knommu and coldfire platforms can't support allocating coherent DMA memory. Instead of just returning noncoherent memory, just fail the allocation. Signed-off-by: Christoph Hellwig <hch@lst.de> --- arch/m68k/kernel/dma.c | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-)