| /***************************************************************************/ |
| * dma.c -- Freescale ColdFire DMA support |
| * Copyright (C) 2007, Greg Ungerer (gerg@snapgear.com) |
| /***************************************************************************/ |
| #include <linux/kernel.h> |
| #include <linux/module.h> |
| #include <asm/coldfire.h> |
| /***************************************************************************/ |
| * DMA channel base address table. |
| unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { |
| EXPORT_SYMBOL(dma_base_addr); |
| unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; |
| EXPORT_SYMBOL(dma_device_address); |
| /***************************************************************************/ |