diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-12 14:40:12 +0530 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-03-19 08:58:17 +0000 |
commit | e2f3e9bbbaa64a017d91b33fdd9d0886f431b36b (patch) | |
tree | 05ea88bb5045a534ef7251e3d7d6e88a4a99f487 /drivers/mfd/stw481x.c | |
parent | c8016d45a3520fb6bd41f5740f075b53df280683 (diff) |
mfd: stw481x: Staticize stw481x_regmap_config
stw481x_regmap_config is local to this file.
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/stw481x.c')
-rw-r--r-- | drivers/mfd/stw481x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/stw481x.c b/drivers/mfd/stw481x.c index 1243d5c6a448..cc42f88586f6 100644 --- a/drivers/mfd/stw481x.c +++ b/drivers/mfd/stw481x.c @@ -167,7 +167,7 @@ static struct mfd_cell stw481x_cells[] = { }, }; -const struct regmap_config stw481x_regmap_config = { +static const struct regmap_config stw481x_regmap_config = { .reg_bits = 8, .val_bits = 8, }; |