summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorKristina Martsenko <kristina.martsenko@gmail.com>2013-11-11 20:42:32 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-11-12 09:38:25 (GMT)
commite630a6bcf18079b2ab6b03d55c9757e8ef6656b6 (patch)
tree18be20429dfb1479e19dc07ee2c3a56cf974d027 /drivers
parent7f1d15a819f01c0abc5763c522d537b9e3ef40fe (diff)
downloadlinux-e630a6bcf18079b2ab6b03d55c9757e8ef6656b6.tar.xz
staging: lustre: fix checkpatch issue regarding pointer coding style
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/lustre/lustre/obdecho/echo_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/obdecho/echo_client.c b/drivers/staging/lustre/lustre/obdecho/echo_client.c
index 1fb0ac4..9b2dea2 100644
--- a/drivers/staging/lustre/lustre/obdecho/echo_client.c
+++ b/drivers/staging/lustre/lustre/obdecho/echo_client.c
@@ -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) {