All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i2c-designware: fixup of wait_for_completion_timeout return handling
@ 2015-02-09 16:35 Nicholas Mc Guire
  2015-02-10  7:19   ` Jarkko Nikula
  0 siblings, 1 reply; 5+ messages in thread
From: Nicholas Mc Guire @ 2015-02-09 16:35 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Mika Westerberg, Jisheng Zhang, Du Wenkai, Shinya Kuribayashi,
	Romain Baeriswyl, Jarkko Nikula, Andrew Jackson, David Box,
	linux-i2c, linux-kernel, Nicholas Mc Guire

return type of wait_for_completion_timeout is unsigned long not int. 
An appropriate return variable is introduced and assignment fixed up.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
---

Patch was compile tested with x86_64_defconfig +
CONFIG_X86_AMD_PLATFORM_DEVICE=y, CONFIG_I2C_DESIGNWARE_PLATFORM=m
(implies CONFIG_I2C_DESIGNWARE_CORE=y)

Patch is against 3.19.0-rc7 (localversion-next is -next-20150209)

 drivers/i2c/busses/i2c-designware-core.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
index 6e25c01..05934e0 100644
--- a/drivers/i2c/busses/i2c-designware-core.c
+++ b/drivers/i2c/busses/i2c-designware-core.c
@@ -623,6 +623,7 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
 {
 	struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
 	int ret;
+	unsigned int timeout;
 
 	dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num);
 
@@ -656,8 +657,8 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
 	i2c_dw_xfer_init(dev);
 
 	/* wait for tx to complete */
-	ret = wait_for_completion_timeout(&dev->cmd_complete, HZ);
-	if (ret == 0) {
+	timeout = wait_for_completion_timeout(&dev->cmd_complete, HZ);
+	if (timeout == 0) {
 		dev_err(dev->dev, "controller timed out\n");
 		/* i2c_dw_init implicitly disables the adapter */
 		i2c_dw_init(dev);
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] i2c-designware: fixup of wait_for_completion_timeout return handling
@ 2015-02-10  7:19   ` Jarkko Nikula
  0 siblings, 0 replies; 5+ messages in thread
From: Jarkko Nikula @ 2015-02-10  7:19 UTC (permalink / raw)
  To: Nicholas Mc Guire, Wolfram Sang
  Cc: Mika Westerberg, Jisheng Zhang, Du Wenkai, Shinya Kuribayashi,
	Romain Baeriswyl, Andrew Jackson, David Box, linux-i2c,
	linux-kernel

Hi

On 02/09/2015 06:35 PM, Nicholas Mc Guire wrote:
> return type of wait_for_completion_timeout is unsigned long not int.
> An appropriate return variable is introduced and assignment fixed up.
>
> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
> ---
>
> Patch was compile tested with x86_64_defconfig +
> CONFIG_X86_AMD_PLATFORM_DEVICE=y, CONFIG_I2C_DESIGNWARE_PLATFORM=m
> (implies CONFIG_I2C_DESIGNWARE_CORE=y)
>
> Patch is against 3.19.0-rc7 (localversion-next is -next-20150209)
>
>   drivers/i2c/busses/i2c-designware-core.c |    5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
> index 6e25c01..05934e0 100644
> --- a/drivers/i2c/busses/i2c-designware-core.c
> +++ b/drivers/i2c/busses/i2c-designware-core.c
> @@ -623,6 +623,7 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
>   {
>   	struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
>   	int ret;
> +	unsigned int timeout;
>
Not unsigned long.

> @@ -656,8 +657,8 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
>   	i2c_dw_xfer_init(dev);
>
>   	/* wait for tx to complete */
> -	ret = wait_for_completion_timeout(&dev->cmd_complete, HZ);
> -	if (ret == 0) {
> +	timeout = wait_for_completion_timeout(&dev->cmd_complete, HZ);
> +	if (timeout == 0) {
>   		dev_err(dev->dev, "controller timed out\n");
>   		/* i2c_dw_init implicitly disables the adapter */
>   		i2c_dw_init(dev);
>
I'd say better to test directly with "if 
(!wait_for_completion_timeout())" since remaining jiffies or potential 
error code from wait_for_completion_timeout() is not used here.

-- 
Jarkko

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] i2c-designware: fixup of wait_for_completion_timeout return handling
@ 2015-02-10  7:19   ` Jarkko Nikula
  0 siblings, 0 replies; 5+ messages in thread
From: Jarkko Nikula @ 2015-02-10  7:19 UTC (permalink / raw)
  To: Nicholas Mc Guire, Wolfram Sang
  Cc: Mika Westerberg, Jisheng Zhang, Du Wenkai, Shinya Kuribayashi,
	Romain Baeriswyl, Andrew Jackson, David Box,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

Hi

On 02/09/2015 06:35 PM, Nicholas Mc Guire wrote:
> return type of wait_for_completion_timeout is unsigned long not int.
> An appropriate return variable is introduced and assignment fixed up.
>
> Signed-off-by: Nicholas Mc Guire <hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org>
> ---
>
> Patch was compile tested with x86_64_defconfig +
> CONFIG_X86_AMD_PLATFORM_DEVICE=y, CONFIG_I2C_DESIGNWARE_PLATFORM=m
> (implies CONFIG_I2C_DESIGNWARE_CORE=y)
>
> Patch is against 3.19.0-rc7 (localversion-next is -next-20150209)
>
>   drivers/i2c/busses/i2c-designware-core.c |    5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
> index 6e25c01..05934e0 100644
> --- a/drivers/i2c/busses/i2c-designware-core.c
> +++ b/drivers/i2c/busses/i2c-designware-core.c
> @@ -623,6 +623,7 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
>   {
>   	struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
>   	int ret;
> +	unsigned int timeout;
>
Not unsigned long.

> @@ -656,8 +657,8 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
>   	i2c_dw_xfer_init(dev);
>
>   	/* wait for tx to complete */
> -	ret = wait_for_completion_timeout(&dev->cmd_complete, HZ);
> -	if (ret == 0) {
> +	timeout = wait_for_completion_timeout(&dev->cmd_complete, HZ);
> +	if (timeout == 0) {
>   		dev_err(dev->dev, "controller timed out\n");
>   		/* i2c_dw_init implicitly disables the adapter */
>   		i2c_dw_init(dev);
>
I'd say better to test directly with "if 
(!wait_for_completion_timeout())" since remaining jiffies or potential 
error code from wait_for_completion_timeout() is not used here.

-- 
Jarkko

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] i2c-designware: fixup of wait_for_completion_timeout return handling
@ 2015-02-10  7:59     ` Nicholas Mc Guire
  0 siblings, 0 replies; 5+ messages in thread
From: Nicholas Mc Guire @ 2015-02-10  7:59 UTC (permalink / raw)
  To: Jarkko Nikula
  Cc: Nicholas Mc Guire, Wolfram Sang, Mika Westerberg, Jisheng Zhang,
	Du Wenkai, Shinya Kuribayashi, Romain Baeriswyl, Andrew Jackson,
	David Box, linux-i2c, linux-kernel

On Tue, 10 Feb 2015, Jarkko Nikula wrote:

> Hi
>
> On 02/09/2015 06:35 PM, Nicholas Mc Guire wrote:
>> return type of wait_for_completion_timeout is unsigned long not int.
>> An appropriate return variable is introduced and assignment fixed up.
>>
>> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
>> ---
>>
>> Patch was compile tested with x86_64_defconfig +
>> CONFIG_X86_AMD_PLATFORM_DEVICE=y, CONFIG_I2C_DESIGNWARE_PLATFORM=m
>> (implies CONFIG_I2C_DESIGNWARE_CORE=y)
>>
>> Patch is against 3.19.0-rc7 (localversion-next is -next-20150209)
>>
>>   drivers/i2c/busses/i2c-designware-core.c |    5 +++--
>>   1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
>> index 6e25c01..05934e0 100644
>> --- a/drivers/i2c/busses/i2c-designware-core.c
>> +++ b/drivers/i2c/busses/i2c-designware-core.c
>> @@ -623,6 +623,7 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
>>   {
>>   	struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
>>   	int ret;
>> +	unsigned int timeout;
>>
> Not unsigned long.

oops thats braindead - yes of course unsigned long
sorry - thats a careless mistake.

>
>> @@ -656,8 +657,8 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
>>   	i2c_dw_xfer_init(dev);
>>
>>   	/* wait for tx to complete */
>> -	ret = wait_for_completion_timeout(&dev->cmd_complete, HZ);
>> -	if (ret == 0) {
>> +	timeout = wait_for_completion_timeout(&dev->cmd_complete, HZ);
>> +	if (timeout == 0) {
>>   		dev_err(dev->dev, "controller timed out\n");
>>   		/* i2c_dw_init implicitly disables the adapter */
>>   		i2c_dw_init(dev);
>>
> I'd say better to test directly with "if  
> (!wait_for_completion_timeout())" since remaining jiffies or potential  
> error code from wait_for_completion_timeout() is not used here.
>

Yup - that would eliminate the need for an additional variable
but some maintainers did not like that solution.

Thanks for your comments - Will fix it up and repost.

thx!
hofrat

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] i2c-designware: fixup of wait_for_completion_timeout return handling
@ 2015-02-10  7:59     ` Nicholas Mc Guire
  0 siblings, 0 replies; 5+ messages in thread
From: Nicholas Mc Guire @ 2015-02-10  7:59 UTC (permalink / raw)
  To: Jarkko Nikula
  Cc: Nicholas Mc Guire, Wolfram Sang, Mika Westerberg, Jisheng Zhang,
	Du Wenkai, Shinya Kuribayashi, Romain Baeriswyl, Andrew Jackson,
	David Box, linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

On Tue, 10 Feb 2015, Jarkko Nikula wrote:

> Hi
>
> On 02/09/2015 06:35 PM, Nicholas Mc Guire wrote:
>> return type of wait_for_completion_timeout is unsigned long not int.
>> An appropriate return variable is introduced and assignment fixed up.
>>
>> Signed-off-by: Nicholas Mc Guire <hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org>
>> ---
>>
>> Patch was compile tested with x86_64_defconfig +
>> CONFIG_X86_AMD_PLATFORM_DEVICE=y, CONFIG_I2C_DESIGNWARE_PLATFORM=m
>> (implies CONFIG_I2C_DESIGNWARE_CORE=y)
>>
>> Patch is against 3.19.0-rc7 (localversion-next is -next-20150209)
>>
>>   drivers/i2c/busses/i2c-designware-core.c |    5 +++--
>>   1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
>> index 6e25c01..05934e0 100644
>> --- a/drivers/i2c/busses/i2c-designware-core.c
>> +++ b/drivers/i2c/busses/i2c-designware-core.c
>> @@ -623,6 +623,7 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
>>   {
>>   	struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
>>   	int ret;
>> +	unsigned int timeout;
>>
> Not unsigned long.

oops thats braindead - yes of course unsigned long
sorry - thats a careless mistake.

>
>> @@ -656,8 +657,8 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
>>   	i2c_dw_xfer_init(dev);
>>
>>   	/* wait for tx to complete */
>> -	ret = wait_for_completion_timeout(&dev->cmd_complete, HZ);
>> -	if (ret == 0) {
>> +	timeout = wait_for_completion_timeout(&dev->cmd_complete, HZ);
>> +	if (timeout == 0) {
>>   		dev_err(dev->dev, "controller timed out\n");
>>   		/* i2c_dw_init implicitly disables the adapter */
>>   		i2c_dw_init(dev);
>>
> I'd say better to test directly with "if  
> (!wait_for_completion_timeout())" since remaining jiffies or potential  
> error code from wait_for_completion_timeout() is not used here.
>

Yup - that would eliminate the need for an additional variable
but some maintainers did not like that solution.

Thanks for your comments - Will fix it up and repost.

thx!
hofrat

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-02-10  7:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-09 16:35 [PATCH] i2c-designware: fixup of wait_for_completion_timeout return handling Nicholas Mc Guire
2015-02-10  7:19 ` Jarkko Nikula
2015-02-10  7:19   ` Jarkko Nikula
2015-02-10  7:59   ` Nicholas Mc Guire
2015-02-10  7:59     ` Nicholas Mc Guire

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.