diff options
author | Luis de Bethencourt <luisbg@kernel.org> | 2018-01-16 10:34:32 -0500 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2018-01-18 04:21:24 -0500 |
commit | 85fae482a9dd3560b9dcd35136fb29ccab6fae48 (patch) | |
tree | e0cfdfa2fcfe69bae72e1132d8e7986c658517da | |
parent | 45dc488c0ee19ba5cba7a67be473aeaf88a7447e (diff) |
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>
-rw-r--r-- | drivers/target/target_core_user.c | 2 |
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) | |||
1583 | 1583 | ||
1584 | wake_up_all(&udev->nl_cmd_wq); | 1584 | wake_up_all(&udev->nl_cmd_wq); |
1585 | 1585 | ||
1586 | return ret;; | 1586 | return ret; |
1587 | } | 1587 | } |
1588 | 1588 | ||
1589 | static int tcmu_netlink_event(struct tcmu_dev *udev, enum tcmu_genl_cmd cmd, | 1589 | static int tcmu_netlink_event(struct tcmu_dev *udev, enum tcmu_genl_cmd cmd, |