Re: [PATCH] spi: tegra114: cleanup wait_for_completion return handling

2015-02-02 Thread Laxman Dewangan
On Sunday 01 February 2015 07:25 PM, Nicholas Mc Guire wrote: return type of wait_for_completion_timeout is unsigned long not int, this patch adds an appropriate variable and fixes up the assignment. As the string in dev_err already explicitly states "timeout" there is little point in printing

Re: [PATCH] spi: tegra114: cleanup wait_for_completion return handling

2015-02-02 Thread Laxman Dewangan
On Sunday 01 February 2015 07:25 PM, Nicholas Mc Guire wrote: return type of wait_for_completion_timeout is unsigned long not int, this patch adds an appropriate variable and fixes up the assignment. As the string in dev_err already explicitly states timeout there is little point in printing the

[PATCH] spi: tegra114: cleanup wait_for_completion return handling

2015-02-01 Thread Nicholas Mc Guire
return type of wait_for_completion_timeout is unsigned long not int, this patch adds an appropriate variable and fixes up the assignment. As the string in dev_err already explicitly states "timeout" there is little point in printing the 0 here which also just says "timeout". Signed-off-by:

[PATCH] spi: tegra114: cleanup wait_for_completion return handling

2015-02-01 Thread Nicholas Mc Guire
return type of wait_for_completion_timeout is unsigned long not int, this patch adds an appropriate variable and fixes up the assignment. As the string in dev_err already explicitly states timeout there is little point in printing the 0 here which also just says timeout. Signed-off-by: Nicholas