staging: lustre: remove RETURN macro
[deliverable/linux.git] / drivers / staging / lustre / include / linux / libcfs / bitmap.h
index 3f1c37b4bb7a0998711f270cb59da4381b16b964..f3d4a896a75a1045282f6fa951e93eaa01bcee8e 100644 (file)
@@ -52,11 +52,11 @@ cfs_bitmap_t *CFS_ALLOCATE_BITMAP(int size)
 
        OBD_ALLOC(ptr, CFS_BITMAP_SIZE(size));
        if (ptr == NULL)
-               RETURN(ptr);
+               return ptr;
 
        ptr->size = size;
 
-       RETURN (ptr);
+       return ptr;
 }
 
 #define CFS_FREE_BITMAP(ptr)   OBD_FREE(ptr, CFS_BITMAP_SIZE(ptr->size))
This page took 0.027327 seconds and 5 git commands to generate.