From 04b088b6c2a98c4208a7b234b6d22b9b48920290 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Mon, 22 Jul 2013 18:31:51 +0000 Subject: [PATCH] scst_sysfs: Fix a checkpatch complaint Avoid that the checkpatch script included in kernel 3.10 reports the following: WARNING: space prohibited before semicolon git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4917 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/scst_sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/src/scst_sysfs.c b/scst/src/scst_sysfs.c index dc3077cf6..30933f95a 100644 --- a/scst/src/scst_sysfs.c +++ b/scst/src/scst_sysfs.c @@ -3199,7 +3199,7 @@ static ssize_t scst_sess_latency_show(struct kobject *kobj, spin_lock_bh(&sess->lat_lock); - for (i = 0; i < SCST_LATENCY_STATS_NUM ; i++) { + for (i = 0; i < SCST_LATENCY_STATS_NUM; i++) { uint64_t scst_time_wr, tgt_time_wr, dev_time_wr; uint64_t processed_cmds_wr; uint64_t scst_time_rd, tgt_time_rd, dev_time_rd;