diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-02-24 04:40:24 -0500 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2015-03-11 05:25:13 -0400 |
commit | c456fbb2b221d137e14857f143d64263262badfa (patch) | |
tree | c5da630a74dc2c915a719c3d987737750b9188ae /drivers/pwm | |
parent | 67d7bc487075a0155a6d6d477f266b5bb370a238 (diff) |
pwm: pca9685: 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: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm')
-rw-r--r-- | drivers/pwm/pwm-pca9685.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-pca9685.c b/drivers/pwm/pwm-pca9685.c index 3fb775ded0df..34b5c275a92a 100644 --- a/drivers/pwm/pwm-pca9685.c +++ b/drivers/pwm/pwm-pca9685.c | |||
@@ -202,7 +202,7 @@ static const struct pwm_ops pca9685_pwm_ops = { | |||
202 | .owner = THIS_MODULE, | 202 | .owner = THIS_MODULE, |
203 | }; | 203 | }; |
204 | 204 | ||
205 | static struct regmap_config pca9685_regmap_i2c_config = { | 205 | static const struct regmap_config pca9685_regmap_i2c_config = { |
206 | .reg_bits = 8, | 206 | .reg_bits = 8, |
207 | .val_bits = 8, | 207 | .val_bits = 8, |
208 | .max_register = PCA9685_NUMREGS, | 208 | .max_register = PCA9685_NUMREGS, |