From: Jingoo Han Date: Thu, 22 May 2014 00:43:50 +0000 (+1000) Subject: rtc: isl12057: make of_device_id array const X-Git-Tag: next-20140530~2^2~120 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=aac790e385e4a00c19f65fcc4d75caeb223f091b;p=karo-tx-linux.git rtc: isl12057: make of_device_id array const Make of_device_id array const, because all OF functions handle it as const. Signed-off-by: Jingoo Han Signed-off-by: Andrew Morton --- diff --git a/drivers/rtc/rtc-isl12057.c b/drivers/rtc/rtc-isl12057.c index 41bd76aaff76..455b601d731d 100644 --- a/drivers/rtc/rtc-isl12057.c +++ b/drivers/rtc/rtc-isl12057.c @@ -278,7 +278,7 @@ static int isl12057_probe(struct i2c_client *client, } #ifdef CONFIG_OF -static struct of_device_id isl12057_dt_match[] = { +static const struct of_device_id isl12057_dt_match[] = { { .compatible = "isl,isl12057" }, { }, };