* [PATCH] i2c: at91: fixup return type of wait_for_completion_timeout
@ 2015-02-08 16:12 Nicholas Mc Guire
[not found] ` <1423411927-32686-1-git-send-email-hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Nicholas Mc Guire @ 2015-02-08 16:12 UTC (permalink / raw)
To: Ludovic Desroches
Cc: Wolfram Sang, linux-i2c-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Nicholas Mc Guire
Return type of wait_for_completion_timeout is unsigned long not int. This
patch adds a timeout variable of appropriate type and fixes up the assignment.
Signed-off-by: Nicholas Mc Guire <hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org>
---
Patch was only compile tested with at91_dt_defconfig
(implies CONFIG_I2C_AT91=y)
Patch is against 3.19.0-rc7 (localversion-next is -next-20150204)
drivers/i2c/busses/i2c-at91.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/i2c/busses/i2c-at91.c b/drivers/i2c/busses/i2c-at91.c
index 636fd2e..79c6404 100644
--- a/drivers/i2c/busses/i2c-at91.c
+++ b/drivers/i2c/busses/i2c-at91.c
@@ -381,6 +381,7 @@ static irqreturn_t atmel_twi_interrupt(int irq, void *dev_id)
static int at91_do_twi_transfer(struct at91_twi_dev *dev)
{
int ret;
+ unsigned long timeout;
bool has_unre_flag = dev->pdata->has_unre_flag;
dev_dbg(dev->dev, "transfer: %s %d bytes.\n",
@@ -436,9 +437,9 @@ static int at91_do_twi_transfer(struct at91_twi_dev *dev)
}
}
- ret = wait_for_completion_timeout(&dev->cmd_complete,
- dev->adapter.timeout);
- if (ret == 0) {
+ timeout = wait_for_completion_timeout(&dev->cmd_complete,
+ dev->adapter.timeout);
+ if (timeout == 0) {
dev_err(dev->dev, "controller timed out\n");
at91_init_twi_bus(dev);
ret = -ETIMEDOUT;
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <1423411927-32686-1-git-send-email-hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org>]
* Re: [PATCH] i2c: at91: fixup return type of wait_for_completion_timeout [not found] ` <1423411927-32686-1-git-send-email-hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org> @ 2015-02-10 16:39 ` Ludovic Desroches 2015-03-15 10:01 ` Wolfram Sang 1 sibling, 0 replies; 3+ messages in thread From: Ludovic Desroches @ 2015-02-10 16:39 UTC (permalink / raw) To: Nicholas Mc Guire Cc: Ludovic Desroches, Wolfram Sang, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA On Sun, Feb 08, 2015 at 11:12:07AM -0500, Nicholas Mc Guire wrote: > Return type of wait_for_completion_timeout is unsigned long not int. This > patch adds a timeout variable of appropriate type and fixes up the assignment. > > Signed-off-by: Nicholas Mc Guire <hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org> Acked-by: Ludovic Desroches <ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org> Thanks > --- > > Patch was only compile tested with at91_dt_defconfig > (implies CONFIG_I2C_AT91=y) > > Patch is against 3.19.0-rc7 (localversion-next is -next-20150204) > > drivers/i2c/busses/i2c-at91.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-at91.c b/drivers/i2c/busses/i2c-at91.c > index 636fd2e..79c6404 100644 > --- a/drivers/i2c/busses/i2c-at91.c > +++ b/drivers/i2c/busses/i2c-at91.c > @@ -381,6 +381,7 @@ static irqreturn_t atmel_twi_interrupt(int irq, void *dev_id) > static int at91_do_twi_transfer(struct at91_twi_dev *dev) > { > int ret; > + unsigned long timeout; > bool has_unre_flag = dev->pdata->has_unre_flag; > > dev_dbg(dev->dev, "transfer: %s %d bytes.\n", > @@ -436,9 +437,9 @@ static int at91_do_twi_transfer(struct at91_twi_dev *dev) > } > } > > - ret = wait_for_completion_timeout(&dev->cmd_complete, > - dev->adapter.timeout); > - if (ret == 0) { > + timeout = wait_for_completion_timeout(&dev->cmd_complete, > + dev->adapter.timeout); > + if (timeout == 0) { > dev_err(dev->dev, "controller timed out\n"); > at91_init_twi_bus(dev); > ret = -ETIMEDOUT; > -- > 1.7.10.4 > ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] i2c: at91: fixup return type of wait_for_completion_timeout [not found] ` <1423411927-32686-1-git-send-email-hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org> 2015-02-10 16:39 ` Ludovic Desroches @ 2015-03-15 10:01 ` Wolfram Sang 1 sibling, 0 replies; 3+ messages in thread From: Wolfram Sang @ 2015-03-15 10:01 UTC (permalink / raw) To: Nicholas Mc Guire Cc: Ludovic Desroches, linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 389 bytes --] On Sun, Feb 08, 2015 at 11:12:07AM -0500, Nicholas Mc Guire wrote: > Return type of wait_for_completion_timeout is unsigned long not int. This > patch adds a timeout variable of appropriate type and fixes up the assignment. > > Signed-off-by: Nicholas Mc Guire <hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org> Fixed variable name to 'time_left' and applied to for-next, thanks! [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-15 10:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-08 16:12 [PATCH] i2c: at91: fixup return type of wait_for_completion_timeout Nicholas Mc Guire
[not found] ` <1423411927-32686-1-git-send-email-hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org>
2015-02-10 16:39 ` Ludovic Desroches
2015-03-15 10:01 ` Wolfram Sang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox