mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
i2c: Improve deprecation warnings
When warning on the use of deprecated i2c_driver methods attach_adapter and detach_adapter, mention the name of the driver which needs to be updated. Signed-off-by: Jean Delvare <khali@linux-fr.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
d733ed6c34
commit
a920ff41cb
@ -797,7 +797,8 @@ static int i2c_do_add_adapter(struct i2c_driver *driver,
|
||||
|
||||
/* Let legacy drivers scan this bus for matching devices */
|
||||
if (driver->attach_adapter) {
|
||||
dev_warn(&adap->dev, "attach_adapter method is deprecated\n");
|
||||
dev_warn(&adap->dev, "%s: attach_adapter method is deprecated\n",
|
||||
driver->driver.name);
|
||||
dev_warn(&adap->dev, "Please use another way to instantiate "
|
||||
"your i2c_client\n");
|
||||
/* We ignore the return code; if it fails, too bad */
|
||||
@ -984,7 +985,8 @@ static int i2c_do_del_adapter(struct i2c_driver *driver,
|
||||
|
||||
if (!driver->detach_adapter)
|
||||
return 0;
|
||||
dev_warn(&adapter->dev, "detach_adapter method is deprecated\n");
|
||||
dev_warn(&adapter->dev, "%s: detach_adapter method is deprecated\n",
|
||||
driver->driver.name);
|
||||
res = driver->detach_adapter(adapter);
|
||||
if (res)
|
||||
dev_err(&adapter->dev, "detach_adapter failed (%d) "
|
||||
|
Loading…
Reference in New Issue
Block a user