staging: lustre: Added space between type name and *
authorSrikrishan Malik <srikrishanmalik@gmail.com>
Mon, 11 Aug 2014 18:27:35 +0000 (23:57 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:18 +0000 (12:23 -0700)
Fixes the following checkpatch error:

ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: Srikrishan Malik <srikrishanmalik@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/mdc/mdc_locks.c

index 7f724e3c3f06cedec7a1cad867606853eaa059d5..c03d77c9c5b8924a25237d8d99ea8640f7bb9821 100644 (file)
@@ -218,7 +218,7 @@ int mdc_find_cbdata(struct obd_export *exp,
        struct ldlm_res_id res_id;
        int rc = 0;
 
-       fid_build_reg_res_name((struct lu_fid*)fid, &res_id);
+       fid_build_reg_res_name((struct lu_fid *)fid, &res_id);
        rc = ldlm_resource_iterate(class_exp2obd(exp)->obd_namespace, &res_id,
                                   it, data);
        if (rc == LDLM_ITER_STOP)