diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-05-02 00:57:45 +0900 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-05-04 16:38:55 +0530 |
commit | 577d2e0629c289485e1929df492ecdb613f930c2 (patch) | |
tree | c4966f9f1d65e4c2324e73fc77e0d2c756e5e85c /drivers/dma/ep93xx_dma.c | |
parent | 4ce98c0a20befbcac7953edd05dca2180ade88d6 (diff) | |
download | linux-stable-577d2e0629c289485e1929df492ecdb613f930c2.tar.gz linux-stable-577d2e0629c289485e1929df492ecdb613f930c2.tar.bz2 linux-stable-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.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) 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 }, { }, |