diff options
author | Shubhrajyoti D <shubhrajyoti@ti.com> | 2012-05-29 06:56:17 -0400 |
---|---|---|
committer | Wolfram Sang <w.sang@pengutronix.de> | 2012-07-08 06:49:14 -0400 |
commit | 33d549851d2fcb6492429ebfebc344a8988b259d (patch) | |
tree | 34da0d0296902b4ede1a8130b060781feddd366f | |
parent | 62ff2c2b1a36de9dd98e9b8a575da6e6b2365740 (diff) |
I2C: OMAP: Don't check if wait_for_completion_timeout() returns less than zero
By definition, wait_for_completion_timeout() returns an unsigned value and
therefore, it is not necessary to check if the return value is less than zero
as this is not possible.
This is based on a patch from Jon Hunter <jon-hunter@ti.com>
Changes from his patch
- Declare a long as the wait_for_completion_timeout returns long.
Original patch is
http://git.omapzoom.org/?p=kernel/omap.git;a=commitdiff;h=ea02cece7b0000bc736e60c4188a11aaa74bc6e6
Reviewed-by: Kevin Hilman <khilman@ti.com>
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
-rw-r--r-- | drivers/i2c/busses/i2c-omap.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index 1777d799ee9e..fec8d5c6f0e5 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c | |||
@@ -473,7 +473,7 @@ static int omap_i2c_xfer_msg(struct i2c_adapter *adap, | |||
473 | struct i2c_msg *msg, int stop) | 473 | struct i2c_msg *msg, int stop) |
474 | { | 474 | { |
475 | struct omap_i2c_dev *dev = i2c_get_adapdata(adap); | 475 | struct omap_i2c_dev *dev = i2c_get_adapdata(adap); |
476 | int r; | 476 | unsigned long timeout; |
477 | u16 w; | 477 | u16 w; |
478 | 478 | ||
479 | dev_dbg(dev->dev, "addr: 0x%04x, len: %d, flags: 0x%x, stop: %d\n", | 479 | dev_dbg(dev->dev, "addr: 0x%04x, len: %d, flags: 0x%x, stop: %d\n", |
@@ -541,12 +541,10 @@ static int omap_i2c_xfer_msg(struct i2c_adapter *adap, | |||
541 | * REVISIT: We should abort the transfer on signals, but the bus goes | 541 | * REVISIT: We should abort the transfer on signals, but the bus goes |
542 | * into arbitration and we're currently unable to recover from it. | 542 | * into arbitration and we're currently unable to recover from it. |
543 | */ | 543 | */ |
544 | r = wait_for_completion_timeout(&dev->cmd_complete, | 544 | timeout = wait_for_completion_timeout(&dev->cmd_complete, |
545 | OMAP_I2C_TIMEOUT); | 545 | OMAP_I2C_TIMEOUT); |
546 | dev->buf_len = 0; | 546 | dev->buf_len = 0; |
547 | if (r < 0) | 547 | if (timeout == 0) { |
548 | return r; | ||
549 | if (r == 0) { | ||
550 | dev_err(dev->dev, "controller timed out\n"); | 548 | dev_err(dev->dev, "controller timed out\n"); |
551 | omap_i2c_init(dev); | 549 | omap_i2c_init(dev); |
552 | return -ETIMEDOUT; | 550 | return -ETIMEDOUT; |