power: at91-reset: Constify platform_device_id
authorKrzysztof Kozlowski <k.kozlowski.k@gmail.com>
Fri, 1 May 2015 15:46:44 +0000 (00:46 +0900)
committerSebastian Reichel <sre@kernel.org>
Sat, 23 May 2015 17:44:23 +0000 (19:44 +0200)
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>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/reset/at91-reset.c

index ca461ebc7ae8f73338059d6ce9547b850c269f1b..36dc52fb2ec8ba9aace408546359dc0879db40f2 100644 (file)
@@ -243,7 +243,7 @@ static int at91_reset_probe(struct platform_device *pdev)
        return 0;
 }
 
-static struct platform_device_id at91_reset_plat_match[] = {
+static const struct platform_device_id at91_reset_plat_match[] = {
        { "at91-sam9260-reset", (unsigned long)at91sam9260_restart },
        { "at91-sam9g45-reset", (unsigned long)at91sam9g45_restart },
        { /* sentinel */ }