From: Florian Vaussard Date: Fri, 31 Aug 2012 11:02:55 +0000 (+0200) Subject: omap-i2c: fix incorrect log message when using a device tree X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=c5d3cd6dc2dc106ca9fcc8cb6587754ee6cfc86e;p=deliverable%2Flinux.git omap-i2c: fix incorrect log message when using a device tree When booting using a device tree, the adapter number is dynamically assigned after the log message is sent. This patch modifies the log message to get a correct adapter id. Signed-off-by: Florian Vaussard Tested-by: Benoit Cousson Acked-by: Shubhrajyoti D Signed-off-by: Wolfram Sang --- diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index b149e3236da4..c78431a4970a 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c @@ -1175,9 +1175,6 @@ omap_i2c_probe(struct platform_device *pdev) goto err_unuse_clocks; } - dev_info(dev->dev, "bus %d rev%d.%d.%d at %d kHz\n", pdev->id, - dev->dtrev, dev->rev >> 4, dev->rev & 0xf, dev->speed); - adap = &dev->adapter; i2c_set_adapdata(adap, dev); adap->owner = THIS_MODULE; @@ -1195,6 +1192,9 @@ omap_i2c_probe(struct platform_device *pdev) goto err_unuse_clocks; } + dev_info(dev->dev, "bus %d rev%d.%d.%d at %d kHz\n", adap->nr, + dev->dtrev, dev->rev >> 4, dev->rev & 0xf, dev->speed); + of_i2c_register_devices(adap); pm_runtime_mark_last_busy(dev->dev);