diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-21 12:51:08 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-21 13:10:42 -0400 |
commit | 6d284bb11c302a4db4d169ca13d48dbb4d9b5cbe (patch) | |
tree | 86124829a58ff7d1227ef7db921c7125fc76edf4 | |
parent | 5771a8c08880cdca3bfb4a3fc6d309d6bba20877 (diff) |
regulator: ltc3589: constify i2c_device_id
i2c_device_id are not supposed to change at runtime. All functions
working with i2c_device_id provided by <linux/i2c.h> work with
const i2c_device_id. So mark the non-const structs as const.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/regulator/ltc3589.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/ltc3589.c b/drivers/regulator/ltc3589.c index 853a06ad86d6..18d5b01ddcb2 100644 --- a/drivers/regulator/ltc3589.c +++ b/drivers/regulator/ltc3589.c | |||
@@ -539,7 +539,7 @@ static int ltc3589_probe(struct i2c_client *client, | |||
539 | return 0; | 539 | return 0; |
540 | } | 540 | } |
541 | 541 | ||
542 | static struct i2c_device_id ltc3589_i2c_id[] = { | 542 | static const struct i2c_device_id ltc3589_i2c_id[] = { |
543 | { "ltc3589", LTC3589 }, | 543 | { "ltc3589", LTC3589 }, |
544 | { "ltc3589-1", LTC3589_1 }, | 544 | { "ltc3589-1", LTC3589_1 }, |
545 | { "ltc3589-2", LTC3589_2 }, | 545 | { "ltc3589-2", LTC3589_2 }, |