From fbaed7ab3b82276dddcd3da997c11b7fe5a4f559 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Mon, 10 Aug 2009 12:32:06 +0000 Subject: [PATCH] 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 --- scst/src/scst_priv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scst/src/scst_priv.h b/scst/src/scst_priv.h index 4c3ab8613..00e710826 100644 --- a/scst/src/scst_priv.h +++ b/scst/src/scst_priv.h @@ -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) */