spi: fsl-dspi: Make of_device_id array const
authorJingoo Han <jg1.han@samsung.com>
Wed, 7 May 2014 07:45:41 +0000 (16:45 +0900)
committerMark Brown <broonie@linaro.org>
Wed, 7 May 2014 19:53:04 +0000 (20:53 +0100)
Make of_device_id array const, because all OF functions
handle it as const.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/spi/spi-fsl-dspi.c

index d565eeee3bd8dc38085d84d5ab5d7b606ef232f2..5021ddf03f6035d882f1beee5fa8ebd134d40a4e 100644 (file)
@@ -406,7 +406,7 @@ static irqreturn_t dspi_interrupt(int irq, void *dev_id)
        return IRQ_HANDLED;
 }
 
-static struct of_device_id fsl_dspi_dt_ids[] = {
+static const struct of_device_id fsl_dspi_dt_ids[] = {
        { .compatible = "fsl,vf610-dspi", .data = NULL, },
        { /* sentinel */ }
 };
This page took 0.026123 seconds and 5 git commands to generate.