staging: rtl8188eu: Fixed 'Missing a blank line after declarations' warnings.
[linux-2.6-microblaze.git] / drivers / staging / rtl8188eu / os_dep / osdep_service.c
index 6ff836f..51abfe9 100644 (file)
@@ -41,8 +41,8 @@ u8 *_rtw_malloc(u32 sz)
 void *rtw_malloc2d(int h, int w, int size)
 {
        int j;
-
        void **a = kzalloc(h * sizeof(void *) + h * w * size, GFP_KERNEL);
+
        if (!a)
                goto out;