[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1328493676-2477-1-git-send-email-kashyap.gada@linux-82zy.site>
Date: Mon, 6 Feb 2012 02:01:16 +0000
From: Kashyap Gada <gada.kashyap@...il.com>
To: marek.belisko@...il.com
Cc: gregkh@...uxfoundation.com, linux@...nbow-software.org,
paul.gortmaker@...driver.com, gada.kashyap@...il.com,
jeffm@...e.com, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org,
Kashyap Gada <kashyap.gada@...ux-82zy.site>
Subject: [PATCH] Staging: ft1000: ft1000-pcmia: fix space required after that ',' in ft1000_proc.c
This is a patch to the ft1000_proc.c that fixes up space required after ',' errors found by the checkpatch.pl tool
Signed-off-by: Kashyap Gada <gada.kashyap@...il.com>
---
drivers/staging/ft1000/ft1000-pcmcia/ft1000_proc.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/ft1000/ft1000-pcmcia/ft1000_proc.c b/drivers/staging/ft1000/ft1000-pcmcia/ft1000_proc.c
index 7faeada..71aaad3 100644
--- a/drivers/staging/ft1000/ft1000-pcmcia/ft1000_proc.c
+++ b/drivers/staging/ft1000/ft1000-pcmcia/ft1000_proc.c
@@ -29,10 +29,10 @@
#define FT1000_PROC "ft1000"
#define MAX_FILE_LEN 255
-#define PUTM_TO_PAGE(len,page,args...) \
+#define PUTM_TO_PAGE(len, page, args...) \
len += snprintf(page+len, PAGE_SIZE - len, args)
-#define PUTX_TO_PAGE(len,page,message,size,var) \
+#define PUTX_TO_PAGE(len, page, message, size, var) \
len += snprintf(page+len, PAGE_SIZE - len, message); \
for(i = 0; i < (size - 1); i++) \
{ \
@@ -40,7 +40,7 @@
\
len += snprintf(page+len, PAGE_SIZE - len, "%02x\n", var[i])
-#define PUTD_TO_PAGE(len,page,message,size,var) \
+#define PUTD_TO_PAGE(len, page, message, size, var) \
len += snprintf(page+len, PAGE_SIZE - len, message); \
for(i = 0; i < (size - 1); i++) \
{ \
--
1.7.7
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists