aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2014-07-21 07:15:55 -0400
committerLee Jones <lee.jones@linaro.org>2014-07-21 11:58:26 -0400
commita31b0fa6ccd2baba682ec3c60ea5521ad10bbab4 (patch)
tree1a16ea2fe90b5f8ab2c2a18a31beecb03a66de38
parent8a789b647df028715fc7e480dca0f45802824182 (diff)
mfd: max77686: Fix 'line over 80 chars' warning
This is part of an effort to clean-up the MFD subsystem. +WARNING: line over 80 characters + &max77686_rtc_regmap_config); total: 0 errors, 1 warnings, 299 lines checked Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--drivers/mfd/max77686.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c
index 8650832e593f..f2bd69915987 100644
--- a/drivers/mfd/max77686.c
+++ b/drivers/mfd/max77686.c
@@ -166,7 +166,7 @@ static int max77686_i2c_probe(struct i2c_client *i2c,
166 i2c_set_clientdata(max77686->rtc, max77686); 166 i2c_set_clientdata(max77686->rtc, max77686);
167 167
168 max77686->rtc_regmap = devm_regmap_init_i2c(max77686->rtc, 168 max77686->rtc_regmap = devm_regmap_init_i2c(max77686->rtc,
169 &max77686_rtc_regmap_config); 169 &max77686_rtc_regmap_config);
170 if (IS_ERR(max77686->rtc_regmap)) { 170 if (IS_ERR(max77686->rtc_regmap)) {
171 ret = PTR_ERR(max77686->rtc_regmap); 171 ret = PTR_ERR(max77686->rtc_regmap);
172 dev_err(max77686->dev, "failed to allocate RTC regmap: %d\n", 172 dev_err(max77686->dev, "failed to allocate RTC regmap: %d\n",