Commit f1c87ceb authored by Wolfram Sang's avatar Wolfram Sang

i2c: of: change log level of failed device creation

If we cannot create a device, this is an error, not a warning. Fix the
log level.
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 4a3928c6
......@@ -103,7 +103,7 @@ void of_i2c_register_devices(struct i2c_adapter *adap)
client = of_i2c_register_device(adap, node);
if (IS_ERR(client)) {
dev_warn(&adap->dev,
dev_err(&adap->dev,
"Failed to create I2C device for %pOF\n",
node);
of_node_clear_flag(node, OF_POPULATED);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment