diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2012-10-15 14:01:01 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-10-15 14:01:01 -0700 |
commit | 8c4cc00552664d0be259388f2b1a49036c3757fa (patch) | |
tree | 1ca58cbac27878bd28cb6a2d04c5c52d29d2dd94 /drivers/mmc | |
parent | cc8c29d9ff05cc15681f9715eea6c292877f7b41 (diff) | |
download | talos-obmc-linux-8c4cc00552664d0be259388f2b1a49036c3757fa.tar.gz talos-obmc-linux-8c4cc00552664d0be259388f2b1a49036c3757fa.zip |
ARM: OMAP1: DMA: Moving OMAP1 DMA channel definitions to mach-omap1
Some of the omap1 dma channel definitions are used by some drivers.
For moving omap1 dma channel definitions to mach-omap1/, the used
ones should be defined locally to driver. Driver can eliminate it
by using DT, platform data, or IORESOURCE_DMA.
And moving OMAP1 DMA channel definitions to mach-omap1
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/omap.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c index 48ad361613ef..b2cf37b0ee30 100644 --- a/drivers/mmc/host/omap.c +++ b/drivers/mmc/host/omap.c @@ -84,6 +84,10 @@ #define OMAP_MMC_CMDTYPE_AC 2 #define OMAP_MMC_CMDTYPE_ADTC 3 +#define OMAP_DMA_MMC_TX 21 +#define OMAP_DMA_MMC_RX 22 +#define OMAP_DMA_MMC2_TX 54 +#define OMAP_DMA_MMC2_RX 55 #define DRIVER_NAME "mmci-omap" |