aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/target/target_core_user.c
diff options
context:
space:
mode:
authorLuis de Bethencourt <luisbg@kernel.org>2018-01-16 15:34:32 +0000
committerNicholas Bellinger <nab@linux-iscsi.org>2018-01-18 01:21:24 -0800
commit85fae482a9dd3560b9dcd35136fb29ccab6fae48 (patch)
treee0cfdfa2fcfe69bae72e1132d8e7986c658517da /drivers/target/target_core_user.c
parenttcmu: fix cmd user after free (diff)
downloadlinux-dev-85fae482a9dd3560b9dcd35136fb29ccab6fae48.tar.xz
linux-dev-85fae482a9dd3560b9dcd35136fb29ccab6fae48.zip
tcmu: Fix trailing semicolon
The trailing semicolon is an empty statement that does no operation. It is completely stripped out by the compiler. Removing it since it doesn't do anything. Signed-off-by: Luis de Bethencourt <luisbg@kernel.org> Acked-by: Mike Christie <mchristi@redhat.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/target_core_user.c')
-rw-r--r--drivers/target/target_core_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/target_core_user.c b/drivers/target/target_core_user.c
index 3096257a00d9..4ad89ea71a70 100644
--- a/drivers/target/target_core_user.c
+++ b/drivers/target/target_core_user.c
@@ -1583,7 +1583,7 @@ static int tcmu_wait_genl_cmd_reply(struct tcmu_dev *udev)
wake_up_all(&udev->nl_cmd_wq);
- return ret;;
+ return ret;
}
static int tcmu_netlink_event(struct tcmu_dev *udev, enum tcmu_genl_cmd cmd,