]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mfd: max14577: Make mfd_cell array const
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Tue, 13 May 2014 10:58:38 +0000 (12:58 +0200)
committerLee Jones <lee.jones@linaro.org>
Fri, 23 May 2014 09:34:23 +0000 (10:34 +0100)
mfd_add_devices() expects array of struct mfd_cell to be const.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/max14577.c

index 6c81590f8464a238a3f6f1fc170a5b65699a3959..36de88d0deddd420327352cae4b5d5532ddcdb8c 100644 (file)
@@ -26,7 +26,7 @@
 #include <linux/mfd/max14577.h>
 #include <linux/mfd/max14577-private.h>
 
-static struct mfd_cell max14577_devs[] = {
+static const struct mfd_cell max14577_devs[] = {
        {
                .name = "max14577-muic",
                .of_compatible = "maxim,max14577-muic",
@@ -38,7 +38,7 @@ static struct mfd_cell max14577_devs[] = {
        { .name = "max14577-charger", },
 };
 
-static struct mfd_cell max77836_devs[] = {
+static const struct mfd_cell max77836_devs[] = {
        {
                .name = "max77836-muic",
                .of_compatible = "maxim,max77836-muic",
@@ -292,7 +292,7 @@ static int max14577_i2c_probe(struct i2c_client *i2c,
        struct device_node *np = i2c->dev.of_node;
        int ret = 0;
        const struct regmap_irq_chip *irq_chip;
-       struct mfd_cell *mfd_devs;
+       const struct mfd_cell *mfd_devs;
        unsigned int mfd_devs_size;
        int irq_flags;