From: Wolfram Sang Date: Thu, 18 Jan 2018 12:11:32 +0000 (+0100) Subject: i2c: of: remove duplicated check for valid address X-Git-Tag: rel_imx_4.19.35_1.1.0~10361^2~46 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=4f3ae38acb3c93cbd8aab9a9fb76d5f661ab578d;p=linux.git i2c: of: remove duplicated check for valid address The very same check is done when calling i2c_new_device(). Remove it here to avoid code duplication. Signed-off-by: Wolfram Sang --- diff --git a/drivers/i2c/i2c-core-of.c b/drivers/i2c/i2c-core-of.c index 4b573ee4a820..bbfff3f61b1f 100644 --- a/drivers/i2c/i2c-core-of.c +++ b/drivers/i2c/i2c-core-of.c @@ -57,12 +57,6 @@ static struct i2c_client *of_i2c_register_device(struct i2c_adapter *adap, info.flags |= I2C_CLIENT_SLAVE; } - if (i2c_check_addr_validity(addr, info.flags)) { - dev_err(&adap->dev, "of_i2c: invalid addr=%x on %pOF\n", - addr, node); - return ERR_PTR(-EINVAL); - } - info.addr = addr; info.archdata = &dev_ad; info.of_node = of_node_get(node);