diff options
author | Vinod Koul <vinod.koul@linux.intel.com> | 2011-10-14 10:42:56 +0530 |
---|---|---|
committer | Vinod Koul <vinod.koul@linux.intel.com> | 2011-10-31 09:40:25 +0530 |
commit | 1d0c81e876fe04295ef5df387ba057bf9cfae3d8 (patch) | |
tree | ebee1c19005a528361521cc624de9f69fba44b93 /drivers | |
parent | 1003cab8276cd34d9deab8ca9d148ee59f7728a7 (diff) | |
download | op-kernel-dev-1d0c81e876fe04295ef5df387ba057bf9cfae3d8.zip op-kernel-dev-1d0c81e876fe04295ef5df387ba057bf9cfae3d8.tar.gz |
carma: move to dma_transfer_direction
fixup usage of dma direction by introducing dma_transfer_direction,
this patch moves carma drivers to use new enum
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
CC Ira W. Snyder <iws@ovro.caltech.edu>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/misc/carma/carma-fpga-program.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/carma/carma-fpga-program.c b/drivers/misc/carma/carma-fpga-program.c index 7ce6065..20ef1ea 100644 --- a/drivers/misc/carma/carma-fpga-program.c +++ b/drivers/misc/carma/carma-fpga-program.c @@ -513,7 +513,7 @@ static noinline int fpga_program_dma(struct fpga_dev *priv) * transaction, and then put it under external control */ memset(&config, 0, sizeof(config)); - config.direction = DMA_TO_DEVICE; + config.direction = DMA_MEM_TO_DEV; config.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; config.dst_maxburst = fpga_fifo_size(priv->regs) / 2 / 4; ret = chan->device->device_control(chan, DMA_SLAVE_CONFIG, |