aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2015-01-05 10:01:29 +0100
committerLee Jones <lee.jones@linaro.org>2015-01-22 15:56:26 +0000
commit486212f53fe1ccad156804318ca83e77484b7de3 (patch)
treefdbe9ce68411a46130edab6641613e530b9c4824 /drivers/mfd
parentmfd: davinci_voicecodec: Constify struct regmap_config (diff)
downloadlinux-dev-486212f53fe1ccad156804318ca83e77484b7de3.tar.xz
linux-dev-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')
-rw-r--r--drivers/mfd/smsc-ece1099.c2
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,