Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 286102
b: refs/heads/master
c: 20dd5a3
h: refs/heads/master
v: v3
  • Loading branch information
Vinod Koul committed Oct 31, 2011
1 parent 2dba3cb commit da1394a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: db8196df4bb6f117caa163aa73b0f16fd62290bd
refs/heads/master: 20dd5a356efcb5bf574baa9adccc775158f13ae1
4 changes: 2 additions & 2 deletions trunk/arch/arm/plat-samsung/dma-ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ static unsigned samsung_dmadev_request(enum dma_ch dma_ch,

chan = dma_request_channel(mask, pl330_filter, (void *)dma_ch);

if (info->direction == DMA_FROM_DEVICE) {
if (info->direction == DMA_DEV_TO_MEM) {
memset(&slave_config, 0, sizeof(struct dma_slave_config));
slave_config.direction = info->direction;
slave_config.src_addr = info->fifo;
slave_config.src_addr_width = info->width;
slave_config.src_maxburst = 1;
dmaengine_slave_config(chan, &slave_config);
} else if (info->direction == DMA_TO_DEVICE) {
} else if (info->direction == DMA_MEM_TO_DEV) {
memset(&slave_config, 0, sizeof(struct dma_slave_config));
slave_config.direction = info->direction;
slave_config.dst_addr = info->fifo;
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/arm/plat-samsung/include/plat/dma-ops.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

struct samsung_dma_prep_info {
enum dma_transaction_type cap;
enum dma_data_direction direction;
enum dma_transfer_direction direction;
dma_addr_t buf;
unsigned long period;
unsigned long len;
Expand All @@ -27,7 +27,7 @@ struct samsung_dma_prep_info {

struct samsung_dma_info {
enum dma_transaction_type cap;
enum dma_data_direction direction;
enum dma_transfer_direction direction;
enum dma_slave_buswidth width;
dma_addr_t fifo;
struct s3c2410_dma_client *client;
Expand Down

0 comments on commit da1394a

Please sign in to comment.