power: supply: bq24257_charger: simplify getting the adapter of a client
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Sat, 8 Jun 2019 10:55:56 +0000 (12:55 +0200)
committerSebastian Reichel <sre@kernel.org>
Sun, 23 Jun 2019 16:02:17 +0000 (18:02 +0200)
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>
drivers/power/supply/bq24257_charger.c

index 673c7d6..ec0a0f8 100644 (file)
@@ -959,7 +959,7 @@ static int bq24257_fw_probe(struct bq24257_device *bq)
 static int bq24257_probe(struct i2c_client *client,
                         const struct i2c_device_id *id)
 {
-       struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
+       struct i2c_adapter *adapter = client->adapter;
        struct device *dev = &client->dev;
        const struct acpi_device_id *acpi_id;
        struct bq24257_device *bq;