From: Wolfram Sang Date: Sat, 8 Jun 2019 10:55:57 +0000 (+0200) Subject: power: supply: bq25890_charger: simplify getting the adapter of a client X-Git-Tag: v5.3-rc1~77^2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=124db1f91b00c1076a20d616ee007762323e7fab;p=thirdparty%2Fkernel%2Flinux.git power: supply: bq25890_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/bq25890_charger.c b/drivers/power/supply/bq25890_charger.c index 66991e6f75d99..221548997e15c 100644 --- a/drivers/power/supply/bq25890_charger.c +++ b/drivers/power/supply/bq25890_charger.c @@ -827,7 +827,7 @@ static int bq25890_fw_probe(struct bq25890_device *bq) static int bq25890_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; struct bq25890_device *bq; int ret;