From: Wolfram Sang Date: Sat, 8 Jun 2019 10:55:56 +0000 (+0200) Subject: power: supply: bq24257_charger: simplify getting the adapter of a client X-Git-Tag: rel_imx_5.10.35_2.0.0-somdevices.0~4259^2~18 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=1c9427be2a9c04e2c56ddcc3c60e5af3a4d67ffc;p=linux.git power: supply: bq24257_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 Reviewed-by: Simon Horman Signed-off-by: Sebastian Reichel --- diff --git a/drivers/power/supply/bq24257_charger.c b/drivers/power/supply/bq24257_charger.c index 673c7d6ff1a7..ec0a0f83302d 100644 --- a/drivers/power/supply/bq24257_charger.c +++ b/drivers/power/supply/bq24257_charger.c @@ -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;