aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/max77686.c
diff options
context:
space:
mode:
authorGeliang Tang <geliangtang@163.com>2015-12-28 23:00:14 +0800
committerLee Jones <lee.jones@linaro.org>2016-01-14 08:43:50 +0000
commit1b5420e1f587b05de49b36472fefad5949042d00 (patch)
tree7548769fb131f9c828fcc4cf16cf0dbf83940d18 /drivers/mfd/max77686.c
parentdt-bindings: regulator/mfd: Reorganize S2MPA01 bindings (diff)
downloadlinux-dev-1b5420e1f587b05de49b36472fefad5949042d00.tar.xz
linux-dev-1b5420e1f587b05de49b36472fefad5949042d00.zip
mfd: Use to_i2c_client() instead of open-coding it
Signed-off-by: Geliang Tang <geliangtang@163.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/max77686.c')
-rw-r--r--drivers/mfd/max77686.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c
index d19be64cd32b..d959ebbb2194 100644
--- a/drivers/mfd/max77686.c
+++ b/drivers/mfd/max77686.c
@@ -352,7 +352,7 @@ MODULE_DEVICE_TABLE(i2c, max77686_i2c_id);
#ifdef CONFIG_PM_SLEEP
static int max77686_suspend(struct device *dev)
{
- struct i2c_client *i2c = container_of(dev, struct i2c_client, dev);
+ struct i2c_client *i2c = to_i2c_client(dev);
struct max77686_dev *max77686 = i2c_get_clientdata(i2c);
if (device_may_wakeup(dev))
@@ -374,7 +374,7 @@ static int max77686_suspend(struct device *dev)
static int max77686_resume(struct device *dev)
{
- struct i2c_client *i2c = container_of(dev, struct i2c_client, dev);
+ struct i2c_client *i2c = to_i2c_client(dev);
struct max77686_dev *max77686 = i2c_get_clientdata(i2c);
if (device_may_wakeup(dev))