diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-05-01 11:57:45 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-05-04 07:08:55 -0400 |
commit | 577d2e0629c289485e1929df492ecdb613f930c2 (patch) | |
tree | c4966f9f1d65e4c2324e73fc77e0d2c756e5e85c /drivers/dma/ep93xx_dma.c | |
parent | 4ce98c0a20befbcac7953edd05dca2180ade88d6 (diff) |
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.c | 2 |
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) | |||
1364 | return ret; | 1364 | return ret; |
1365 | } | 1365 | } |
1366 | 1366 | ||
1367 | static struct platform_device_id ep93xx_dma_driver_ids[] = { | 1367 | static const struct platform_device_id ep93xx_dma_driver_ids[] = { |
1368 | { "ep93xx-dma-m2p", 0 }, | 1368 | { "ep93xx-dma-m2p", 0 }, |
1369 | { "ep93xx-dma-m2m", 1 }, | 1369 | { "ep93xx-dma-m2m", 1 }, |
1370 | { }, | 1370 | { }, |