forked from luck/tmp_suning_uos_patched
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>
This commit is contained in:
parent
2573f6d36e
commit
b874809611
|
@ -27,7 +27,6 @@
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/pm_runtime.h>
|
#include <linux/pm_runtime.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/mutex.h>
|
|
||||||
#include <linux/mfd/core.h>
|
#include <linux/mfd/core.h>
|
||||||
#include <linux/mfd/max77686.h>
|
#include <linux/mfd/max77686.h>
|
||||||
#include <linux/mfd/max77686-private.h>
|
#include <linux/mfd/max77686-private.h>
|
||||||
|
@ -79,8 +78,6 @@ static int max77686_i2c_probe(struct i2c_client *i2c,
|
||||||
max77686->wakeup = pdata->wakeup;
|
max77686->wakeup = pdata->wakeup;
|
||||||
max77686->irq_gpio = pdata->irq_gpio;
|
max77686->irq_gpio = pdata->irq_gpio;
|
||||||
|
|
||||||
mutex_init(&max77686->iolock);
|
|
||||||
|
|
||||||
if (regmap_read(max77686->regmap,
|
if (regmap_read(max77686->regmap,
|
||||||
MAX77686_REG_DEVICE_ID, &data) < 0) {
|
MAX77686_REG_DEVICE_ID, &data) < 0) {
|
||||||
dev_err(max77686->dev,
|
dev_err(max77686->dev,
|
||||||
|
|
|
@ -219,7 +219,6 @@ struct max77686_dev {
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
struct i2c_client *i2c; /* 0xcc / PMIC, Battery Control, and FLASH */
|
struct i2c_client *i2c; /* 0xcc / PMIC, Battery Control, and FLASH */
|
||||||
struct i2c_client *rtc; /* slave addr 0x0c */
|
struct i2c_client *rtc; /* slave addr 0x0c */
|
||||||
struct mutex iolock;
|
|
||||||
|
|
||||||
int type;
|
int type;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user