diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2012-07-13 08:32:10 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@linux.intel.com> | 2012-07-16 02:35:45 -0400 |
commit | 7fd63ccdad72335fd820b0ce5cb8edb6ca6419ce (patch) | |
tree | 3b47e62905e6a9bda6085f346443c189263f3df5 /drivers/dma/at_hdmac.c | |
parent | f8609c2b528331c38293bb8082a91701256d3fc1 (diff) |
dmaengine: at_hdmac: add a few const qualifiers
This prepares of_device_id.data becoming const. Without this change
the following warning would occur:
drivers/dma/at_hdmac.c: In function 'at_dma_get_driver_data':
drivers/dma/at_hdmac.c:1228: warning: return discards qualifiers from pointer target type
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Vinod Koul <vinod.koul@intel.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'drivers/dma/at_hdmac.c')
-rw-r--r-- | drivers/dma/at_hdmac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c index bb1601305d25..3934fcc4e00b 100644 --- a/drivers/dma/at_hdmac.c +++ b/drivers/dma/at_hdmac.c | |||
@@ -1216,7 +1216,7 @@ static const struct platform_device_id atdma_devtypes[] = { | |||
1216 | } | 1216 | } |
1217 | }; | 1217 | }; |
1218 | 1218 | ||
1219 | static inline struct at_dma_platform_data * __init at_dma_get_driver_data( | 1219 | static inline const struct at_dma_platform_data * __init at_dma_get_driver_data( |
1220 | struct platform_device *pdev) | 1220 | struct platform_device *pdev) |
1221 | { | 1221 | { |
1222 | if (pdev->dev.of_node) { | 1222 | if (pdev->dev.of_node) { |
@@ -1254,7 +1254,7 @@ static int __init at_dma_probe(struct platform_device *pdev) | |||
1254 | int irq; | 1254 | int irq; |
1255 | int err; | 1255 | int err; |
1256 | int i; | 1256 | int i; |
1257 | struct at_dma_platform_data *plat_dat; | 1257 | const struct at_dma_platform_data *plat_dat; |
1258 | 1258 | ||
1259 | /* setup platform data for each SoC */ | 1259 | /* setup platform data for each SoC */ |
1260 | dma_cap_set(DMA_MEMCPY, at91sam9rl_config.cap_mask); | 1260 | dma_cap_set(DMA_MEMCPY, at91sam9rl_config.cap_mask); |