diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2013-12-10 18:35:19 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-01-21 03:28:08 -0500 |
commit | 12eda2a2e644d319dfc49bede1620c2f48ccbc8a (patch) | |
tree | c958e16dd855bdb4186890ca79b88a3ce98cd729 /drivers/mfd/ssbi.c | |
parent | 5eec14ccf90942fecd89e147e0b88ab12dd83e70 (diff) |
mfd: ssbi: Mark match table const
This is a read-only data structure.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/ssbi.c')
-rw-r--r-- | drivers/mfd/ssbi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/ssbi.c b/drivers/mfd/ssbi.c index dd1d28f343f6..b78942ed4c67 100644 --- a/drivers/mfd/ssbi.c +++ b/drivers/mfd/ssbi.c | |||
@@ -317,7 +317,7 @@ static int ssbi_probe(struct platform_device *pdev) | |||
317 | return of_platform_populate(np, NULL, NULL, &pdev->dev); | 317 | return of_platform_populate(np, NULL, NULL, &pdev->dev); |
318 | } | 318 | } |
319 | 319 | ||
320 | static struct of_device_id ssbi_match_table[] = { | 320 | static const struct of_device_id ssbi_match_table[] = { |
321 | { .compatible = "qcom,ssbi" }, | 321 | { .compatible = "qcom,ssbi" }, |
322 | {} | 322 | {} |
323 | }; | 323 | }; |