diff options
| author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 15:20:31 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2015-03-17 08:15:22 -0400 |
| commit | 09355402325819675027eda25aba7026a325390c (patch) | |
| tree | 72942cde0d13046b307aa1f2fd56bb140dfe854f /drivers/spi/spi-octeon.c | |
| parent | c517d838eb7d07bbe9507871fab3931deccff539 (diff) | |
spi: 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: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-octeon.c')
| -rw-r--r-- | drivers/spi/spi-octeon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-octeon.c b/drivers/spi/spi-octeon.c index b283d537d16a..e99d6a93d394 100644 --- a/drivers/spi/spi-octeon.c +++ b/drivers/spi/spi-octeon.c | |||
| @@ -238,7 +238,7 @@ static int octeon_spi_remove(struct platform_device *pdev) | |||
| 238 | return 0; | 238 | return 0; |
| 239 | } | 239 | } |
| 240 | 240 | ||
| 241 | static struct of_device_id octeon_spi_match[] = { | 241 | static const struct of_device_id octeon_spi_match[] = { |
| 242 | { .compatible = "cavium,octeon-3010-spi", }, | 242 | { .compatible = "cavium,octeon-3010-spi", }, |
| 243 | {}, | 243 | {}, |
| 244 | }; | 244 | }; |
