staging: lustre: remove RETURN macro
[deliverable/linux.git] / drivers / staging / lustre / lustre / ptlrpc / ptlrpc_module.c
index e8163805e685aa4eb7e40c9e47237a9727ff9f08..d26fce802b66d8f1da28a113448f222e31455d59 100644 (file)
@@ -66,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;
 
@@ -109,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.02722 seconds and 5 git commands to generate.