Whitespace-only changes: fixed checkpatch complaints reported against a 2.6.27 kernel.

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1032 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2009-08-10 12:32:06 +00:00
parent a6189e9096
commit fbaed7ab3b

View File

@@ -356,14 +356,14 @@ static inline int scst_exec_req(struct scsi_device *sdev,
void (*done)(void *, char *, int, int), gfp_t gfp)
{
#if defined(CONFIG_SCST_STRICT_SERIALIZING)
return scsi_execute_async(sdev, cmd, cmd_len, data_direction, (void*)sgl,
return scsi_execute_async(sdev, cmd, cmd_len, data_direction, (void *)sgl,
bufflen, nents, timeout, retries, privdata, done, gfp);
#elif !defined(SCSI_EXEC_REQ_FIFO_DEFINED)
WARN_ON(1);
return -1;
#else
return scsi_execute_async_fifo(sdev, cmd, cmd_len, data_direction,
(void*)sgl, bufflen, nents, timeout, retries, privdata, done, gfp);
(void *)sgl, bufflen, nents, timeout, retries, privdata, done, gfp);
#endif
}
#else /* i.e. LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 30) */