Re: wireless: p54: add handling of the signal case

2015-01-23 Thread Kalle Valo
> if(!wait_for_completion_interruptible_timeout(...)) > only handles the timeout case - this patch adds handling the > signal case the same as timeout. > > Signed-off-by: Nicholas Mc Guire > Acked-by: Christian Lamparter Thanks, applied to wireless-drivers-next.git but I removed "wireless:"

Re: wireless: p54: add handling of the signal case

2015-01-23 Thread Kalle Valo
if(!wait_for_completion_interruptible_timeout(...)) only handles the timeout case - this patch adds handling the signal case the same as timeout. Signed-off-by: Nicholas Mc Guire der.h...@hofr.at Acked-by: Christian Lamparter chunk...@googlemail.com Thanks, applied to

[PATCH] wireless: p54: add handling of the signal case

2015-01-19 Thread Nicholas Mc Guire
if(!wait_for_completion_interruptible_timeout(...)) only handles the timeout case - this patch adds handling the signal case the same as timeout. Signed-off-by: Nicholas Mc Guire --- Only the timeout case was being handled, the signal case (-ERESTARTSYS) was treated just like the case of

[PATCH] wireless: p54: add handling of the signal case

2015-01-19 Thread Nicholas Mc Guire
if(!wait_for_completion_interruptible_timeout(...)) only handles the timeout case - this patch adds handling the signal case the same as timeout. Signed-off-by: Nicholas Mc Guire der.h...@hofr.at --- Only the timeout case was being handled, the signal case (-ERESTARTSYS) was treated just like