staging:lustre:mdc: Fix return statement reported by coccinelle
authorPrasanna Karthik <mkarthi3@visteon.com>
Tue, 16 Jun 2015 13:42:02 +0000 (13:42 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Jun 2015 04:30:40 +0000 (21:30 -0700)
Modified return statement and removed local declaration no longer
needed. No Compiler warnings.

Signed-off-by: Prasanna Karthik <mkarthi3@visteon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/mdc/mdc_request.c

index c23511f7c142ebda6c26237fda51d6e232de0b0f..7f208a6621e6c8bdce60889763e17256b297d3b0 100644 (file)
@@ -2090,7 +2090,6 @@ static int mdc_hsm_copytool_send(int len, void *val)
 {
        struct kuc_hdr          *lh = (struct kuc_hdr *)val;
        struct hsm_action_list  *hal = (struct hsm_action_list *)(lh + 1);
-       int                      rc;
 
        if (len < sizeof(*lh) + sizeof(*hal)) {
                CERROR("Short HSM message %d < %d\n", len,
@@ -2111,9 +2110,7 @@ static int mdc_hsm_copytool_send(int len, void *val)
               lh->kuc_msglen, hal->hal_count, hal->hal_fsname);
 
        /* Broadcast to HSM listeners */
-       rc = libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
-
-       return rc;
+       return libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
 }
 
 /**