Fix missing space around operators in rtw_alloc2d function in
osdep_service.c
Signed-off-by: Pierre-Yves Kerbrat <pkerbrat@free.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 {
        int j;
 
-       void **a = kzalloc(h*sizeof(void *) + h*w*size, GFP_KERNEL);
+       void **a = kzalloc(h * sizeof(void *) + h * w * size, GFP_KERNEL);
        if (!a) {
                pr_info("%s: alloc memory fail!\n", __func__);
                return NULL;
        }
 
        for (j = 0; j < h; j++)
-               a[j] = ((char *)(a+h)) + j*w*size;
+               a[j] = ((char *)(a + h)) + j * w * size;
 
        return a;
 }