sdd->ops->request is unsigned int, not unsigned long.
Thus, (void *) is converted to (unsigned long *)(unsigned long),
in order to fix possible sparse warnings.

Signed-off-by: Jingoo Han <[email protected]>
Cc: Joe Perches <[email protected]>
---
 drivers/spi/spi-s3c64xx.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c
index 702a536..7577d79 100644
--- a/drivers/spi/spi-s3c64xx.c
+++ b/drivers/spi/spi-s3c64xx.c
@@ -336,10 +336,10 @@ static int acquire_dma(struct s3c64xx_spi_driver_data 
*sdd)
        req.cap = DMA_SLAVE;
        req.client = &s3c64xx_spi_dma_client;
 
-       sdd->rx_dma.ch = (void *)sdd->ops->request(sdd->rx_dma.dmach,
-                                               &req, dev, "rx");
-       sdd->tx_dma.ch = (void *)sdd->ops->request(sdd->tx_dma.dmach,
-                                               &req, dev, "tx");
+       sdd->rx_dma.ch = (unsigned long *)(unsigned long)sdd->ops->request(
+                                       sdd->rx_dma.dmach, &req, dev, "rx");
+       sdd->tx_dma.ch = (unsigned long *)(unsigned long)sdd->ops->request(
+                                       sdd->tx_dma.dmach, &req, dev, "tx");
 
        return 1;
 }
-- 
1.7.10.4


--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to