diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2019-06-08 06:56:02 -0400 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2019-06-23 12:03:20 -0400 |
commit | bf0e482aefe1dad509f6f2b843bf7461c53ce052 (patch) | |
tree | 4c79523100237c3a0eb78eeb846fc81a24cb3c6f /drivers/power | |
parent | df324c606aafa16045542b3129de577d7a4ca3b6 (diff) |
power: supply: rt9455_charger: simplify getting the adapter of a client
We have a dedicated pointer for that, so use it. Much easier to read and
less computation involved.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/supply/rt9455_charger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/supply/rt9455_charger.c b/drivers/power/supply/rt9455_charger.c index cfdbde9daf94..eaa9d6faa874 100644 --- a/drivers/power/supply/rt9455_charger.c +++ b/drivers/power/supply/rt9455_charger.c | |||
@@ -1593,7 +1593,7 @@ static const struct regmap_config rt9455_regmap_config = { | |||
1593 | static int rt9455_probe(struct i2c_client *client, | 1593 | static int rt9455_probe(struct i2c_client *client, |
1594 | const struct i2c_device_id *id) | 1594 | const struct i2c_device_id *id) |
1595 | { | 1595 | { |
1596 | struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); | 1596 | struct i2c_adapter *adapter = client->adapter; |
1597 | struct device *dev = &client->dev; | 1597 | struct device *dev = &client->dev; |
1598 | struct rt9455_info *info; | 1598 | struct rt9455_info *info; |
1599 | struct power_supply_config rt9455_charger_config = {}; | 1599 | struct power_supply_config rt9455_charger_config = {}; |