diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2014-08-19 20:29:13 +0300 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2014-09-11 11:48:12 +0530 |
commit | 61c4319cb523a2346416cddaa7d4e2f9260c14d9 (patch) | |
tree | 57a38d7a13a2c088b3c9f81d71fcabdc9c08ec99 /arch/avr32 | |
parent | 3d598f47e804a77208c6bb0a454123018e2f2281 (diff) | |
download | linux-61c4319cb523a2346416cddaa7d4e2f9260c14d9.tar.bz2 |
avr32: at32ap700x: don't rely on default DMA masters
In future we are going to remove the defaults of AHB masters from dw_dmac
driver. It means each user have to supply proper source and destination masters
by itself explicitly.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/mach-at32ap/at32ap700x.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/avr32/mach-at32ap/at32ap700x.c b/arch/avr32/mach-at32ap/at32ap700x.c index 2a1aa712c6e7..ec7be287a97e 100644 --- a/arch/avr32/mach-at32ap/at32ap700x.c +++ b/arch/avr32/mach-at32ap/at32ap700x.c @@ -1360,6 +1360,8 @@ at32_add_device_mci(unsigned int id, struct mci_platform_data *data) | DWC_CFGH_DST_PER(1)); slave->sdata.cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL); + slave->sdata.src_master = 1; + slave->sdata.dst_master = 0; data->dma_slave = slave; |