Skip to content

Commit 72e8c93

Browse files
dwsusekeithbusch
authored andcommitted
nvmet-fc: remove unnecessary bracket
There is no need for the bracket around the identifier. Remove it. Signed-off-by: Daniel Wagner <dwagner@suse.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Keith Busch <kbusch@kernel.org>
1 parent 3b946fe commit 72e8c93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • drivers/nvme/target

drivers/nvme/target/fc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ nvmet_fc_match_hostport(struct nvmet_fc_tgtport *tgtport, void *hosthandle)
10311031
list_for_each_entry(host, &tgtport->host_list, host_list) {
10321032
if (host->hosthandle == hosthandle && !host->invalid) {
10331033
if (nvmet_fc_hostport_get(host))
1034-
return (host);
1034+
return host;
10351035
}
10361036
}
10371037

0 commit comments

Comments
 (0)