diff options
author | Hannes Reinecke <hare@suse.de> | 2016-10-18 10:01:42 +0200 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2016-11-08 17:29:55 -0500 |
commit | 2580064b5ec6dc9efa475298b276ab21f5cc287d (patch) | |
tree | 70331d1a31c5160aef6eb4d529e344a579166496 /drivers/scsi/fcoe/fcoe_ctlr.c | |
parent | 558b88fe6dd88a16563a4d72b674947b8130a550 (diff) | |
download | linux-stable-2580064b5ec6dc9efa475298b276ab21f5cc287d.tar.gz linux-stable-2580064b5ec6dc9efa475298b276ab21f5cc287d.tar.bz2 linux-stable-2580064b5ec6dc9efa475298b276ab21f5cc287d.zip |
scsi: libfc: Replace ->rport_create callback with function call
The ->rport_create callback only ever had a single implementation,
so we can as well call it directly and drop the callback.
Signed-off-by: Hannes Reinecke <hare@suse.com>
Acked-by: Johannes Thumshirn <jth@kernel.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/fcoe/fcoe_ctlr.c')
-rw-r--r-- | drivers/scsi/fcoe/fcoe_ctlr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fcoe/fcoe_ctlr.c b/drivers/scsi/fcoe/fcoe_ctlr.c index bae4e5a4f0ec..38e67797fc72 100644 --- a/drivers/scsi/fcoe/fcoe_ctlr.c +++ b/drivers/scsi/fcoe/fcoe_ctlr.c @@ -2515,7 +2515,7 @@ static void fcoe_ctlr_vn_add(struct fcoe_ctlr *fip, struct fc_rport_priv *new) return; mutex_lock(&lport->disc.disc_mutex); - rdata = lport->tt.rport_create(lport, port_id); + rdata = fc_rport_create(lport, port_id); if (!rdata) { mutex_unlock(&lport->disc.disc_mutex); return; |