diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 20:21:36 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-03-26 14:20:18 +0000 |
commit | 908725d541a46d76d488bcbacdb131b16d59331b (patch) | |
tree | b24e5206e260c31dad151811bcda697154fc6ff4 /drivers/mfd/twl4030-power.c | |
parent | 48579a9ae8d2034215d15912c863be36166696ed (diff) |
mfd: 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>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/twl4030-power.c')
-rw-r--r-- | drivers/mfd/twl4030-power.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/twl4030-power.c b/drivers/mfd/twl4030-power.c index 393509246037..f440aed61305 100644 --- a/drivers/mfd/twl4030-power.c +++ b/drivers/mfd/twl4030-power.c @@ -829,7 +829,7 @@ static struct twl4030_power_data osc_off_idle = { .board_config = osc_off_rconfig, }; -static struct of_device_id twl4030_power_of_match[] = { +static const struct of_device_id twl4030_power_of_match[] = { { .compatible = "ti,twl4030-power", }, |