diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-01-05 10:01:29 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-01-22 15:56:26 +0000 |
commit | 486212f53fe1ccad156804318ca83e77484b7de3 (patch) | |
tree | fdbe9ce68411a46130edab6641613e530b9c4824 /drivers/mfd/smsc-ece1099.c | |
parent | b8d12eac2838f3fe31bb9d2deaa42c044c8d4d23 (diff) | |
download | linux-486212f53fe1ccad156804318ca83e77484b7de3.tar.gz linux-486212f53fe1ccad156804318ca83e77484b7de3.tar.bz2 linux-486212f53fe1ccad156804318ca83e77484b7de3.zip |
mfd: smsc-ece1099: Constify struct regmap_config
The regmap_config struct may be const because it is not modified by the
driver and regmap_init() accepts pointer to const.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/smsc-ece1099.c')
-rw-r--r-- | drivers/mfd/smsc-ece1099.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/smsc-ece1099.c b/drivers/mfd/smsc-ece1099.c index 90112d4cc905..03246880d484 100644 --- a/drivers/mfd/smsc-ece1099.c +++ b/drivers/mfd/smsc-ece1099.c @@ -24,7 +24,7 @@ #include <linux/mfd/smsc.h> #include <linux/of_platform.h> -static struct regmap_config smsc_regmap_config = { +static const struct regmap_config smsc_regmap_config = { .reg_bits = 8, .val_bits = 8, .max_register = SMSC_VEN_ID_H, |