]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
rtc: make of_device_ids const
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 13 Oct 2014 22:52:39 +0000 (15:52 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 14 Oct 2014 00:18:17 +0000 (02:18 +0200)
of_device_ids (i.e. compatible strings and the respective data) are not
supposed to change at runtime.  All functions working with of_device_ids
provided by <linux/of.h> work with const of_device_ids.  This allows to
mark all struct of_device_id below drivers/rtc const, too.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/rtc/rtc-isl12022.c
drivers/rtc/rtc-mpc5121.c

index aa55f081c505c81bee8bf71ccfe49d85dc27fef7..ee3ba7e6b45e148d3f03c9d671ddefbcbc02f282 100644 (file)
@@ -274,7 +274,7 @@ static int isl12022_probe(struct i2c_client *client,
 }
 
 #ifdef CONFIG_OF
-static struct of_device_id isl12022_dt_match[] = {
+static const struct of_device_id isl12022_dt_match[] = {
        { .compatible = "isl,isl12022" },
        { },
 };
index dc4f14255cc36c755ca90658cdad4c501fda4f71..3b965ad6f4d5ad959f84c920e52767443cb899d4 100644 (file)
@@ -401,7 +401,7 @@ static int mpc5121_rtc_remove(struct platform_device *op)
 }
 
 #ifdef CONFIG_OF
-static struct of_device_id mpc5121_rtc_match[] = {
+static const struct of_device_id mpc5121_rtc_match[] = {
        { .compatible = "fsl,mpc5121-rtc", },
        { .compatible = "fsl,mpc5200-rtc", },
        {},