aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski.k@gmail.com>2015-05-02 00:46:44 +0900
committerSebastian Reichel <sre@kernel.org>2015-05-23 19:44:23 +0200
commit323667209223368b50e16994e0fa8cf833940ce6 (patch)
treef5d0f6f459c18946ed6493ce33c9bb1e634241fe /drivers/power
parentpower: axp288_fuel_gauge: Constify platform_device_id (diff)
downloadlinux-dev-323667209223368b50e16994e0fa8cf833940ce6.tar.xz
linux-dev-323667209223368b50e16994e0fa8cf833940ce6.zip
power: at91-reset: 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> Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Sebastian Reichel <sre@kernel.org>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/reset/at91-reset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/reset/at91-reset.c b/drivers/power/reset/at91-reset.c
index ca461ebc7ae8..36dc52fb2ec8 100644
--- a/drivers/power/reset/at91-reset.c
+++ b/drivers/power/reset/at91-reset.c
@@ -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 */ }