]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: lustre: fix checkpatch issue regarding pointer coding style
authorKristina Martsenko <kristina.martsenko@gmail.com>
Mon, 11 Nov 2013 20:42:32 +0000 (22:42 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Nov 2013 09:38:25 +0000 (18:38 +0900)
Fix the following checkpatch error:
ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: Kristina Martsenko <kristina.martsenko@gmail.com>
Reviewed-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/obdecho/echo_client.c

index 1fb0ac4e920d58136163b7bd244fe782ecdc493a..9b2dea29236380ed8796cff1ffb1e8a2568cbfe4 100644 (file)
@@ -1106,7 +1106,7 @@ static struct echo_object *cl_echo_object_find(struct echo_device *d,
        /* coverity[overrun-buffer-val] */
        obj = cl_object_find(env, echo_dev2cl(d), fid, &conf->eoc_cl);
        if (IS_ERR(obj))
-               GOTO(out, eco = (void*)obj);
+               GOTO(out, eco = (void *)obj);
 
        eco = cl2echo_obj(obj);
        if (eco->eo_deleted) {