diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 22:17:12 +0300 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2015-03-20 15:23:06 +0300 |
commit | 8fb0885504cc029bd48877fa89ba91c33c0110b5 (patch) | |
tree | 2ac4aff94b08f8cea106b5921f5247f60fc278ef /drivers/power/tps65090-charger.c | |
parent | 039ab50bda5606307138b1baa1f18c7e33d357e4 (diff) | |
download | linux-8fb0885504cc029bd48877fa89ba91c33c0110b5.tar.xz |
power: constify of_device_id array
of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)
Signed-off-by: Fabian Frederick <fabf@skynet.be>
[for vexpress]
Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
Diffstat (limited to 'drivers/power/tps65090-charger.c')
-rw-r--r-- | drivers/power/tps65090-charger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/tps65090-charger.c b/drivers/power/tps65090-charger.c index dcf9a3ca53d5..7e8fbd29c30e 100644 --- a/drivers/power/tps65090-charger.c +++ b/drivers/power/tps65090-charger.c @@ -349,7 +349,7 @@ static int tps65090_charger_remove(struct platform_device *pdev) return 0; } -static struct of_device_id of_tps65090_charger_match[] = { +static const struct of_device_id of_tps65090_charger_match[] = { { .compatible = "ti,tps65090-charger", }, { /* end */ } }; |