[PATCH] scsi: match wait_for_completion_timeout return type

2015-03-11 Thread Nicholas Mc Guire
wait_for_completion_timeout returns unsigned long not int. As other instances of wait_for_completion_timeout in fc_fcp.c use ticks_left of appropriate type, this name is used here as well. Signed-off-by: Nicholas Mc Guire --- Patch was only compile tested with x86_64_defconfig + SCSI_LOWLEVEL=y

Re: [PATCH] scsi: match wait_for_completion_timeout return type

2015-03-18 Thread Vasu Dev
On Wed, 2015-03-11 at 07:57 -0400, Nicholas Mc Guire wrote: > wait_for_completion_timeout returns unsigned long not int. As other > instances of wait_for_completion_timeout in fc_fcp.c use ticks_left > of appropriate type, this name is used here as well. > > Signed-off-by: Nicholas Mc Guire > ---