diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 20:20:28 +0100 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-05-06 23:44:07 -0700 |
commit | 666104436543d171b8b1a7213fd1d8bbef1361d5 (patch) | |
tree | 68da1b2b81618118fd057587578aeadbd1d6e68a /drivers/mtd/spi-nor | |
parent | f5cd2ae1e4ad23bc6527b4a667d3f27534730cc5 (diff) | |
download | linux-666104436543d171b8b1a7213fd1d8bbef1361d5.tar.bz2 |
mtd: 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: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/spi-nor')
-rw-r--r-- | drivers/mtd/spi-nor/fsl-quadspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi-nor/fsl-quadspi.c b/drivers/mtd/spi-nor/fsl-quadspi.c index 5d5d36272bb5..52a872fa1b6e 100644 --- a/drivers/mtd/spi-nor/fsl-quadspi.c +++ b/drivers/mtd/spi-nor/fsl-quadspi.c @@ -662,7 +662,7 @@ static int fsl_qspi_nor_setup_last(struct fsl_qspi *q) return 0; } -static struct of_device_id fsl_qspi_dt_ids[] = { +static const struct of_device_id fsl_qspi_dt_ids[] = { { .compatible = "fsl,vf610-qspi", .data = (void *)&vybrid_data, }, { .compatible = "fsl,imx6sx-qspi", .data = (void *)&imx6sx_data, }, { /* sentinel */ } |