staging: lustre: lustre: ptlrpc: Fix pointer declaration
authorHema Prathaban <hemaklnce@gmail.com>
Wed, 13 Aug 2014 10:52:41 +0000 (16:22 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:18 +0000 (12:23 -0700)
This patch fixes the following checkpatch.pl issue in client.c:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Hema Prathaban <hemaklnce@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/ptlrpc/client.c

index dd017f3a77dd42de775b2520cd994f0f7c60d533..8fa9b7127c270ee9ecc82baf24564abd9d0ce3f2 100644 (file)
@@ -721,7 +721,7 @@ struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
  */
 static struct ptlrpc_request *
 ptlrpc_request_alloc_internal(struct obd_import *imp,
-                             struct ptlrpc_request_pool * pool,
+                             struct ptlrpc_request_pool *pool,
                              const struct req_format *format)
 {
        struct ptlrpc_request *request;
@@ -751,7 +751,7 @@ EXPORT_SYMBOL(ptlrpc_request_alloc);
  * initialize its buffer structure according to capsule template \a format.
  */
 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
-                                           struct ptlrpc_request_pool * pool,
+                                           struct ptlrpc_request_pool *pool,
                                            const struct req_format *format)
 {
        return ptlrpc_request_alloc_internal(imp, pool, format);
@@ -2692,7 +2692,7 @@ struct ptlrpc_replay_async_args {
  */
 static int ptlrpc_replay_interpret(const struct lu_env *env,
                                   struct ptlrpc_request *req,
-                                  void * data, int rc)
+                                  void *data, int rc)
 {
        struct ptlrpc_replay_async_args *aa = data;
        struct obd_import *imp = req->rq_import;
This page took 0.036515 seconds and 5 git commands to generate.