staging: lustre: remove RETURN macro
[deliverable/linux.git] / drivers / staging / lustre / lustre / ptlrpc / ptlrpc_module.c
index f6ea80f0b10532f1e7a464bd3b5e6be37b7042e8..d26fce802b66d8f1da28a113448f222e31455d59 100644 (file)
@@ -54,7 +54,6 @@ extern struct mutex ptlrpcd_mutex;
 __init int ptlrpc_init(void)
 {
        int rc, cleanup_phase = 0;
-       ENTRY;
 
        lustre_assert_wire_constants();
 #if RS_DEBUG
@@ -67,11 +66,11 @@ __init int ptlrpc_init(void)
 
        rc = req_layout_init();
        if (rc)
-               RETURN(rc);
+               return rc;
 
        rc = ptlrpc_hr_init();
        if (rc)
-               RETURN(rc);
+               return rc;
 
        cleanup_phase = 1;
 
@@ -110,7 +109,7 @@ __init int ptlrpc_init(void)
        rc = tgt_mod_init();
        if (rc)
                GOTO(cleanup, rc);
-       RETURN(0);
+       return 0;
 
 cleanup:
        switch(cleanup_phase) {
This page took 0.02813 seconds and 5 git commands to generate.