diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-07-06 03:32:20 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-07-08 18:16:14 -0400 |
commit | b8748096111b483de8a544cc220510dff17bbff9 (patch) | |
tree | af190720dc710adc899bd3804891fd462363ff2c /drivers/mfd/max77686.c | |
parent | 2573f6d36e73e080fc1d9d9ac7dfaf2253a61434 (diff) |
mfd: Remove unused max77686 iolock mutex
Now this driver is using regmap API, the iolock mutex is not used and
can be removed.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/max77686.c')
-rw-r--r-- | drivers/mfd/max77686.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c index 11e56017e0b0..9e7e1d30f25f 100644 --- a/drivers/mfd/max77686.c +++ b/drivers/mfd/max77686.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <linux/i2c.h> | 27 | #include <linux/i2c.h> |
28 | #include <linux/pm_runtime.h> | 28 | #include <linux/pm_runtime.h> |
29 | #include <linux/module.h> | 29 | #include <linux/module.h> |
30 | #include <linux/mutex.h> | ||
31 | #include <linux/mfd/core.h> | 30 | #include <linux/mfd/core.h> |
32 | #include <linux/mfd/max77686.h> | 31 | #include <linux/mfd/max77686.h> |
33 | #include <linux/mfd/max77686-private.h> | 32 | #include <linux/mfd/max77686-private.h> |
@@ -79,8 +78,6 @@ static int max77686_i2c_probe(struct i2c_client *i2c, | |||
79 | max77686->wakeup = pdata->wakeup; | 78 | max77686->wakeup = pdata->wakeup; |
80 | max77686->irq_gpio = pdata->irq_gpio; | 79 | max77686->irq_gpio = pdata->irq_gpio; |
81 | 80 | ||
82 | mutex_init(&max77686->iolock); | ||
83 | |||
84 | if (regmap_read(max77686->regmap, | 81 | if (regmap_read(max77686->regmap, |
85 | MAX77686_REG_DEVICE_ID, &data) < 0) { | 82 | MAX77686_REG_DEVICE_ID, &data) < 0) { |
86 | dev_err(max77686->dev, | 83 | dev_err(max77686->dev, |