From: Krzysztof Kozlowski Date: Tue, 13 May 2014 10:58:53 +0000 (+0200) Subject: mfd: max8907: Make of_device_id array const X-Git-Tag: firefly_0821_release~176^2~3820^2~6^2~34 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=488e90032064fa6fcd34d45400a9e45f58668bbc;hp=5ce9a55bdfe204617dd850594682d0fb9a9a80ff;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: Lee Jones --- 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" }, { }, };