summaryrefslogtreecommitdiffstats
path: root/drivers/dma/ep93xx_dma.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski2015-05-01 17:57:45 +0200
committerVinod Koul2015-05-04 13:08:55 +0200
commit577d2e0629c289485e1929df492ecdb613f930c2 (patch)
treec4966f9f1d65e4c2324e73fc77e0d2c756e5e85c /drivers/dma/ep93xx_dma.c
parentdmaengine: omap-dma: Add support for memcpy (diff)
downloadkernel-qcow2-linux-577d2e0629c289485e1929df492ecdb613f930c2.tar.gz
kernel-qcow2-linux-577d2e0629c289485e1929df492ecdb613f930c2.tar.xz
kernel-qcow2-linux-577d2e0629c289485e1929df492ecdb613f930c2.zip
dmaengine: ep93xx: Constify platform_device_id
The platform_device_id is not modified by the driver and core uses it as const. Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/ep93xx_dma.c')
-rw-r--r--drivers/dma/ep93xx_dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ep93xx_dma.c b/drivers/dma/ep93xx_dma.c
index 24e5290faa32..57ff46284f15 100644
--- a/drivers/dma/ep93xx_dma.c
+++ b/drivers/dma/ep93xx_dma.c
@@ -1364,7 +1364,7 @@ static int __init ep93xx_dma_probe(struct platform_device *pdev)
return ret;
}
-static struct platform_device_id ep93xx_dma_driver_ids[] = {
+static const struct platform_device_id ep93xx_dma_driver_ids[] = {
{ "ep93xx-dma-m2p", 0 },
{ "ep93xx-dma-m2m", 1 },
{ },