diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2013-12-11 00:35:19 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-01-21 09:28:08 +0100 |
commit | 12eda2a2e644d319dfc49bede1620c2f48ccbc8a (patch) | |
tree | c958e16dd855bdb4186890ca79b88a3ce98cd729 /drivers/mfd/ssbi.c | |
parent | mfd: ssbi: Constify buffer in ssbi_write (diff) | |
download | linux-12eda2a2e644d319dfc49bede1620c2f48ccbc8a.tar.xz linux-12eda2a2e644d319dfc49bede1620c2f48ccbc8a.zip |
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 '')
-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) return of_platform_populate(np, NULL, NULL, &pdev->dev); } -static struct of_device_id ssbi_match_table[] = { +static const struct of_device_id ssbi_match_table[] = { { .compatible = "qcom,ssbi" }, {} }; |