From: Jingoo Han Date: Fri, 6 Jun 2014 21:35:56 +0000 (-0700) Subject: rtc: isl12057: make of_device_id array const X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8c5bfac0ffd172f3d81be091050fca2aa544ed6e;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.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 Signed-off-by: Linus Torvalds --- 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" }, { }, };