Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 334644
b: refs/heads/master
c: c10356b
h: refs/heads/master
v: v3
  • Loading branch information
Arnd Bergmann committed Oct 17, 2012
1 parent 5c7a918 commit 7797fa1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: fdc858a466b738d35d3492bc7cf77b1dac98bf7c
refs/heads/master: c10356b9846b13651a8a24c3a31e029ffe6eafd9
6 changes: 3 additions & 3 deletions trunk/drivers/spi/spi-s3c64xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@

struct s3c64xx_spi_dma_data {
unsigned ch;
enum dma_data_direction direction;
enum dma_transfer_direction direction;
enum dma_ch dmach;
struct property *dma_prop;
};
Expand Down Expand Up @@ -1065,11 +1065,11 @@ static int __devinit s3c64xx_spi_get_dmares(

if (tx) {
dma_data = &sdd->tx_dma;
dma_data->direction = DMA_TO_DEVICE;
dma_data->direction = DMA_MEM_TO_DEV;
chan_str = "tx";
} else {
dma_data = &sdd->rx_dma;
dma_data->direction = DMA_FROM_DEVICE;
dma_data->direction = DMA_DEV_TO_MEM;
chan_str = "rx";
}

Expand Down

0 comments on commit 7797fa1

Please sign in to comment.