aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/carma/carma-fpga.c
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2015-03-16 20:20:26 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-16 21:10:28 +0100
commit6893d9b51093cf499ee6217e98c50006ec2727c6 (patch)
tree3b9072435cc7199e0ccbac7887591a1df0ff097d /drivers/misc/carma/carma-fpga.c
parentcheckkconfigsymbols.py: filter reports for tools/ (diff)
downloadlinux-dev-6893d9b51093cf499ee6217e98c50006ec2727c6.tar.xz
linux-dev-6893d9b51093cf499ee6217e98c50006ec2727c6.zip
misc: constify of_device_id array
of_device_id is always used as const. (See driver.of_match_table and open firmware functions) Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/carma/carma-fpga.c')
-rw-r--r--drivers/misc/carma/carma-fpga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/carma/carma-fpga.c b/drivers/misc/carma/carma-fpga.c
index 68cdfe151bdb..5aba3fd789de 100644
--- a/drivers/misc/carma/carma-fpga.c
+++ b/drivers/misc/carma/carma-fpga.c
@@ -1486,7 +1486,7 @@ static int data_of_remove(struct platform_device *op)
return 0;
}
-static struct of_device_id data_of_match[] = {
+static const struct of_device_id data_of_match[] = {
{ .compatible = "carma,carma-fpga", },
{},
};