diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-05-01 11:46:44 -0400 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2015-05-23 13:44:23 -0400 |
commit | 323667209223368b50e16994e0fa8cf833940ce6 (patch) | |
tree | f5d0f6f459c18946ed6493ce33c9bb1e634241fe /drivers/power | |
parent | f1f27a4acf7c5be41dccf3ce2e509e2e9fcc6e6f (diff) |
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.c | 2 |
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) | |||
243 | return 0; | 243 | return 0; |
244 | } | 244 | } |
245 | 245 | ||
246 | static struct platform_device_id at91_reset_plat_match[] = { | 246 | static const struct platform_device_id at91_reset_plat_match[] = { |
247 | { "at91-sam9260-reset", (unsigned long)at91sam9260_restart }, | 247 | { "at91-sam9260-reset", (unsigned long)at91sam9260_restart }, |
248 | { "at91-sam9g45-reset", (unsigned long)at91sam9g45_restart }, | 248 | { "at91-sam9g45-reset", (unsigned long)at91sam9g45_restart }, |
249 | { /* sentinel */ } | 249 | { /* sentinel */ } |