Skip to content

Commit

Permalink
mfd: ti-lmu: constify mfd_cell tables
Browse files Browse the repository at this point in the history
Add const attribute to all mfd_cell structures.

Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
  • Loading branch information
Sebastian Reichel authored and Lee Jones committed Oct 23, 2018
1 parent c1aaaa1 commit 5b6850f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/mfd/ti-lmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <linux/slab.h>

struct ti_lmu_data {
struct mfd_cell *cells;
const struct mfd_cell *cells;
int num_cells;
unsigned int max_register;
};
Expand Down Expand Up @@ -63,7 +63,7 @@ static void ti_lmu_disable_hw(struct ti_lmu *lmu)
gpio_set_value(lmu->en_gpio, 0);
}

static struct mfd_cell lm3532_devices[] = {
static const struct mfd_cell lm3532_devices[] = {
{
.name = "ti-lmu-backlight",
.id = LM3532,
Expand All @@ -78,7 +78,7 @@ static struct mfd_cell lm3532_devices[] = {
.of_compatible = "ti,lm363x-regulator", \
} \

static struct mfd_cell lm3631_devices[] = {
static const struct mfd_cell lm3631_devices[] = {
LM363X_REGULATOR(LM3631_BOOST),
LM363X_REGULATOR(LM3631_LDO_CONT),
LM363X_REGULATOR(LM3631_LDO_OREF),
Expand All @@ -91,7 +91,7 @@ static struct mfd_cell lm3631_devices[] = {
},
};

static struct mfd_cell lm3632_devices[] = {
static const struct mfd_cell lm3632_devices[] = {
LM363X_REGULATOR(LM3632_BOOST),
LM363X_REGULATOR(LM3632_LDO_POS),
LM363X_REGULATOR(LM3632_LDO_NEG),
Expand All @@ -102,7 +102,7 @@ static struct mfd_cell lm3632_devices[] = {
},
};

static struct mfd_cell lm3633_devices[] = {
static const struct mfd_cell lm3633_devices[] = {
{
.name = "ti-lmu-backlight",
.id = LM3633,
Expand All @@ -120,15 +120,15 @@ static struct mfd_cell lm3633_devices[] = {
},
};

static struct mfd_cell lm3695_devices[] = {
static const struct mfd_cell lm3695_devices[] = {
{
.name = "ti-lmu-backlight",
.id = LM3695,
.of_compatible = "ti,lm3695-backlight",
},
};

static struct mfd_cell lm3697_devices[] = {
static const struct mfd_cell lm3697_devices[] = {
{
.name = "ti-lmu-backlight",
.id = LM3697,
Expand Down

0 comments on commit 5b6850f

Please sign in to comment.