mtd: st_spi_fsm: Make of_device_id array const
authorJingoo Han <jg1.han@samsung.com>
Wed, 7 May 2014 08:46:59 +0000 (17:46 +0900)
committerBrian Norris <computersforpeace@gmail.com>
Tue, 20 May 2014 23:35:29 +0000 (16:35 -0700)
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: Brian Norris <computersforpeace@gmail.com>
drivers/mtd/devices/st_spi_fsm.c

index f97fe14..d252514 100644 (file)
@@ -2058,7 +2058,7 @@ static int stfsm_remove(struct platform_device *pdev)
        return mtd_device_unregister(&fsm->mtd);
 }
 
-static struct of_device_id stfsm_match[] = {
+static const struct of_device_id stfsm_match[] = {
        { .compatible = "st,spi-fsm", },
        {},
 };