diff options
author | Andy Green <andy@warmcat.com> | 2011-05-30 10:43:10 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2011-10-29 04:37:08 -0400 |
commit | 9550d4d7ab9aff125d3f7d48d3e97c093d19bdbe (patch) | |
tree | 7eefc3facfbdef50af00039dc2a931c14d167303 /drivers/i2c/busses/i2c-omap.c | |
parent | 3be0053ee1a8bfb68de82716ae784f75e1610d60 (diff) |
I2C: OMAP1/OMAP2+: prepend I2C IP version to probed version shown in dev_info
The IP version is prepended to the existing printed probed
version as an "epoch" version.
Cc: patches@linaro.org
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Andy Green <andy.green@linaro.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Acked-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'drivers/i2c/busses/i2c-omap.c')
-rw-r--r-- | drivers/i2c/busses/i2c-omap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index 3aaf7f127514..642a233a6c84 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c | |||
@@ -1093,8 +1093,8 @@ omap_i2c_probe(struct platform_device *pdev) | |||
1093 | goto err_unuse_clocks; | 1093 | goto err_unuse_clocks; |
1094 | } | 1094 | } |
1095 | 1095 | ||
1096 | dev_info(dev->dev, "bus %d rev%d.%d at %d kHz\n", | 1096 | dev_info(dev->dev, "bus %d rev%d.%d.%d at %d kHz\n", pdev->id, |
1097 | pdev->id, dev->rev >> 4, dev->rev & 0xf, dev->speed); | 1097 | pdata->rev, dev->rev >> 4, dev->rev & 0xf, dev->speed); |
1098 | 1098 | ||
1099 | omap_i2c_idle(dev); | 1099 | omap_i2c_idle(dev); |
1100 | 1100 | ||