summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2014-05-13 12:58:53 +0200
committerLee Jones <lee.jones@linaro.org>2014-06-03 08:11:32 +0100
commit488e90032064fa6fcd34d45400a9e45f58668bbc (patch)
treede0f2ea97ca0db76b4ad19ac23dafda1ee4a9035
parent5ce9a55bdfe204617dd850594682d0fb9a9a80ff (diff)
downloadlinux-488e90032064fa6fcd34d45400a9e45f58668bbc.tar.bz2
mfd: max8907: Make of_device_id array const
Array of struct of_device_id may be be const as expected by of_match_table field. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--drivers/mfd/max8907.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/max8907.c b/drivers/mfd/max8907.c
index 07740314b29d..232749c8813d 100644
--- a/drivers/mfd/max8907.c
+++ b/drivers/mfd/max8907.c
@@ -305,7 +305,7 @@ static int max8907_i2c_remove(struct i2c_client *i2c)
}
#ifdef CONFIG_OF
-static struct of_device_id max8907_of_match[] = {
+static const struct of_device_id max8907_of_match[] = {
{ .compatible = "maxim,max8907" },
{ },
};