aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2012-04-30 12:31:27 -0400
committerArnd Bergmann <arnd@arndb.de>2012-10-17 09:25:23 -0400
commitc10356b9846b13651a8a24c3a31e029ffe6eafd9 (patch)
tree81a81068cb30069c64f372194d1c9df5643e8c74 /drivers
parentfdc858a466b738d35d3492bc7cf77b1dac98bf7c (diff)
spi/s3c64xx: use correct dma_transfer_direction type
There is a subtle difference between dma_transfer_direction and dma_data_direction: the former is used by the dmaengine framework, while the latter is used by the dma-mapping API. Although the purpose is comparable, the actual values are different and must not be mixed. In this case, the driver just wants to use dma_transfer_direction. Without this patch, building s3c6400_defconfig results in: drivers/spi/spi-s3c64xx.c: In function 's3c64xx_spi_dmacb': drivers/spi/spi-s3c64xx.c:239:21: warning: comparison between 'enum dma_data_direction' and 'enum dma_transfer_direction' [-Wenum-compare] As pointed out by Kukjin Kim, this also changes the use of constants from DMA_FROM_DEVICE/DMA_TO_DEVICE to DMA_DEV_TO_MEM/DMA_MEM_TO_DEV. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Kukjin Kim <kgene.kim@samsung.com> Cc: Ben Dooks <ben-linux@fluff.org> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: linux-arm-kernel@lists.infradead.org Cc: linux-samsung-soc@vger.kernel.org Cc: spi-devel-general@lists.sourceforge.net
Diffstat (limited to 'drivers')
-rw-r--r--drivers/spi/spi-s3c64xx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c
index d1c8441f638c..cd43b4b985a5 100644
--- a/drivers/spi/spi-s3c64xx.c
+++ b/drivers/spi/spi-s3c64xx.c
@@ -132,7 +132,7 @@
132 132
133struct s3c64xx_spi_dma_data { 133struct s3c64xx_spi_dma_data {
134 unsigned ch; 134 unsigned ch;
135 enum dma_data_direction direction; 135 enum dma_transfer_direction direction;
136 enum dma_ch dmach; 136 enum dma_ch dmach;
137 struct property *dma_prop; 137 struct property *dma_prop;
138}; 138};
@@ -1065,11 +1065,11 @@ static int __devinit s3c64xx_spi_get_dmares(
1065 1065
1066 if (tx) { 1066 if (tx) {
1067 dma_data = &sdd->tx_dma; 1067 dma_data = &sdd->tx_dma;
1068 dma_data->direction = DMA_TO_DEVICE; 1068 dma_data->direction = DMA_MEM_TO_DEV;
1069 chan_str = "tx"; 1069 chan_str = "tx";
1070 } else { 1070 } else {
1071 dma_data = &sdd->rx_dma; 1071 dma_data = &sdd->rx_dma;
1072 dma_data->direction = DMA_FROM_DEVICE; 1072 dma_data->direction = DMA_DEV_TO_MEM;
1073 chan_str = "rx"; 1073 chan_str = "rx";
1074 } 1074 }
1075 1075