diff options
author | Frank Rowand <frank.rowand@sonymobile.com> | 2015-03-14 00:00:36 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@linaro.org> | 2015-03-29 08:56:17 +0100 |
commit | afaed7a993ceae468dabdbbda8a5eaf3e41b7a69 (patch) | |
tree | e07a486ed87906f85d145cc1c42613e6a8955fb8 /drivers/of | |
parent | 3eb46a1da78dfff0c9e03313e11ee99841a9efdb (diff) |
of/unittest: add const where needed
Fix warnings pointed out by checkpatch.
No bugs fixed, but the test code should be a good example of how to use
the devicetree API.
Signed-off-by: Frank Rowand <frank.rowand@sonymobile.com>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/unittest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c index 52c45c7df07f..b322624adb58 100644 --- a/drivers/of/unittest.c +++ b/drivers/of/unittest.c @@ -680,7 +680,7 @@ static void __init of_selftest_parse_interrupts_extended(void) of_node_put(np); } -static struct of_device_id match_node_table[] = { +static const struct of_device_id match_node_table[] = { { .data = "A", .name = "name0", }, /* Name alone is lowest priority */ { .data = "B", .type = "type1", }, /* followed by type alone */ @@ -754,7 +754,7 @@ static void __init of_selftest_platform_populate(void) int irq, rc; struct device_node *np, *child, *grandchild; struct platform_device *pdev; - struct of_device_id match[] = { + const struct of_device_id match[] = { { .compatible = "test-device", }, {} }; @@ -953,7 +953,7 @@ static int selftest_remove(struct platform_device *pdev) return 0; } -static struct of_device_id selftest_match[] = { +static const struct of_device_id selftest_match[] = { { .compatible = "selftest", }, {}, }; @@ -1545,7 +1545,7 @@ static int selftest_i2c_bus_remove(struct platform_device *pdev) return 0; } -static struct of_device_id selftest_i2c_bus_match[] = { +static const struct of_device_id selftest_i2c_bus_match[] = { { .compatible = "selftest-i2c-bus", }, {}, }; |