Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1c87ceb authored by Wolfram Sang's avatar Wolfram Sang
Browse files

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);