staging: lustre: remove RETURN macro
[deliverable/linux.git] / drivers / staging / lustre / lustre / llite / vvp_page.c
index 78729190e74be1e4329bb53d7c2e31a8bc4e65d4..1c02c128e0ee00dc8dfe47e285d03417bcdc6cb9 100644 (file)
@@ -219,7 +219,7 @@ static int vvp_page_prep_read(const struct lu_env *env,
                              struct cl_io *unused)
 {
        /* Skip the page already marked as PG_uptodate. */
-       RETURN(PageUptodate(cl2vm_page(slice)) ? -EALREADY : 0);
+       return PageUptodate(cl2vm_page(slice)) ? -EALREADY : 0;
 }
 
 static int vvp_page_prep_write(const struct lu_env *env,
@@ -366,7 +366,7 @@ static int vvp_page_make_ready(const struct lu_env *env,
                LBUG();
        }
        unlock_page(vmpage);
-       RETURN(result);
+       return result;
 }
 
 static int vvp_page_print(const struct lu_env *env,
This page took 0.036558 seconds and 5 git commands to generate.