diff options
author | Jean Delvare <khali@linux-fr.org> | 2007-02-13 16:09:04 -0500 |
---|---|---|
committer | Jean Delvare <khali@arrakis.delvare> | 2007-02-13 16:09:04 -0500 |
commit | fe2c8d51af96ef7b8ec0bfd70ec62bbe32c0696e (patch) | |
tree | e6ebe77edf10353975faecb6d23dcf31337b1559 /drivers | |
parent | 12a917f69d1468c91d646dbad8408dd0d39d6207 (diff) |
i2c: Remove the warning on missing adapter device
Now that the i2c_adapter migration plan changed and we are going to
keep i2c_adapter.dev, it's no longer that urgent to add a proper device
to all i2c_adapter drivers. Thus is seems resonable to degrade the
warning asking authors to migrate their driver to a debug message.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/i2c/i2c-core.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index 9653f7f81561..21fe1406c8b4 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
@@ -217,9 +217,8 @@ int i2c_add_adapter(struct i2c_adapter *adap) | |||
217 | */ | 217 | */ |
218 | if (adap->dev.parent == NULL) { | 218 | if (adap->dev.parent == NULL) { |
219 | adap->dev.parent = &platform_bus; | 219 | adap->dev.parent = &platform_bus; |
220 | printk(KERN_WARNING "**WARNING** I2C adapter driver [%s] " | 220 | pr_debug("I2C adapter driver [%s] forgot to specify " |
221 | "forgot to specify physical device; fix it!\n", | 221 | "physical device\n", adap->name); |
222 | adap->name); | ||
223 | } | 222 | } |
224 | sprintf(adap->dev.bus_id, "i2c-%d", adap->nr); | 223 | sprintf(adap->dev.bus_id, "i2c-%d", adap->nr); |
225 | adap->dev.driver = &i2c_adapter_driver; | 224 | adap->dev.driver = &i2c_adapter_driver; |