diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 20:20:26 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-16 21:10:28 +0100 |
commit | 6893d9b51093cf499ee6217e98c50006ec2727c6 (patch) | |
tree | 3b9072435cc7199e0ccbac7887591a1df0ff097d /drivers/misc/carma/carma-fpga.c | |
parent | 208d51154c8d7f2c3808b4401132233c5ab21572 (diff) | |
download | talos-op-linux-6893d9b51093cf499ee6217e98c50006ec2727c6.tar.gz talos-op-linux-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.c | 2 |
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", }, {}, }; |