From: Wolfram Sang Date: Mon, 22 Jul 2019 18:15:49 +0000 (+0200) Subject: mtd: pismo: Simplify getting the adapter of a client X-Git-Tag: v5.4-rc1~87^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=752031210ca14571dc9b9bb2ebd22b626b9e4a4b;p=thirdparty%2Flinux.git mtd: pismo: 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 Signed-off-by: Richard Weinberger --- diff --git a/drivers/mtd/maps/pismo.c b/drivers/mtd/maps/pismo.c index 788d4996e2c1d..946ba80f97588 100644 --- a/drivers/mtd/maps/pismo.c +++ b/drivers/mtd/maps/pismo.c @@ -211,13 +211,12 @@ static int pismo_remove(struct i2c_client *client) static int pismo_probe(struct i2c_client *client, const struct i2c_device_id *id) { - struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); struct pismo_pdata *pdata = client->dev.platform_data; struct pismo_eeprom eeprom; struct pismo_data *pismo; int ret, i; - if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) { + if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) { dev_err(&client->dev, "functionality mismatch\n"); return -EIO; }