Signed-off-by: Robert Love <[EMAIL PROTECTED]>
---

 drivers/scsi/libfc/fc_ns.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/scsi/libfc/fc_ns.c b/drivers/scsi/libfc/fc_ns.c
index 32ac764..2e9d424 100644
--- a/drivers/scsi/libfc/fc_ns.c
+++ b/drivers/scsi/libfc/fc_ns.c
@@ -41,7 +41,7 @@ static int fc_ns_new_target(struct fc_lport *, struct 
fc_rport *,
                            struct fc_rport_identifiers *);
 static void fc_ns_del_target(struct fc_lport *, struct fc_rport *);
 static void fc_ns_disc_done(struct fc_lport *);
-static void fcdt_ns_error(struct fc_lport *, struct fc_frame *);
+static void fc_ns_error(struct fc_lport *, struct fc_frame *);
 static void fc_ns_timeout(struct work_struct *);
 
 static void fc_ns_gpn_id_req(struct work_struct *);
@@ -278,7 +278,7 @@ int fc_ns_disc_start(struct fc_lport *lp)
  * Restart discovery after a delay due to resource shortages.
  * If the error persists, the discovery will be abandoned.
  */
-static void fcdt_ns_retry(struct fc_lport *lp)
+static void fc_ns_retry(struct fc_lport *lp)
 {
        unsigned long delay = FC_NS_RETRY_DELAY;
 
@@ -418,13 +418,13 @@ static void fc_ns_gpn_ft_req(struct fc_lport *lp)
                                          FC_FC_SEQ_INIT | FC_FC_END_SEQ);
        }
        if (error || sp == NULL)
-               fcdt_ns_retry(lp);
+               fc_ns_retry(lp);
 }
 
 /*
  * Handle error on dNS request.
  */
-static void fcdt_ns_error(struct fc_lport *lp, struct fc_frame *fp)
+static void fc_ns_error(struct fc_lport *lp, struct fc_frame *fp)
 {
        int err = PTR_ERR(fp);
 
@@ -574,7 +574,7 @@ static void fc_ns_gpn_ft_resp(struct fc_seq *sp, struct 
fc_frame *fp,
        unsigned int len;
 
        if (IS_ERR(fp)) {
-               fcdt_ns_error(lp, fp);
+               fc_ns_error(lp, fp);
                return;
        }
 

_______________________________________________
devel mailing list
[email protected]
http://www.open-fcoe.org/mailman/listinfo/devel

Reply via email to