summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAlex Elder <elder@linaro.org>2016-05-24 13:34:52 -0500
committerGreg Kroah-Hartman <gregkh@google.com>2016-05-27 11:28:16 -0700
commit898d75f4aa8b1aeb99df8fe275cb3fcfa3dc0688 (patch)
tree9c2c24a4eac59ae32ffb037a8529c96afd286644 /drivers
parent95073cc2e53c1352f2c244408d1bd005b07650fd (diff)
downloadlinux-stable-898d75f4aa8b1aeb99df8fe275cb3fcfa3dc0688.tar.gz
linux-stable-898d75f4aa8b1aeb99df8fe275cb3fcfa3dc0688.tar.bz2
linux-stable-898d75f4aa8b1aeb99df8fe275cb3fcfa3dc0688.zip
greybus: drop a bogus semicolon
Coccinelle reports that gb_svc_pwrmon_debugfs_init() has a block of a for loop which is followed by an unnecessary semicolon. Get rid of that semicolon. Signed-off-by: Alex Elder <elder@linaro.org> Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/greybus/svc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/svc.c b/drivers/staging/greybus/svc.c
index 78cc0e38828d..2b3b8d98053c 100644
--- a/drivers/staging/greybus/svc.c
+++ b/drivers/staging/greybus/svc.c
@@ -779,7 +779,7 @@ static void gb_svc_pwrmon_debugfs_init(struct gb_svc *svc)
&pwrmon_debugfs_current_fops);
debugfs_create_file("power_now", S_IRUGO, dir, rail,
&pwrmon_debugfs_power_fops);
- };
+ }
kfree(rail_names);
return;