public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH v3] staging: lustre: fix coding style errors
@ 2015-02-09 17:20 Tal Shorer
  2015-02-09 21:34 ` <gregkh@linuxfoundation.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Tal Shorer @ 2015-02-09 17:20 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: Drokin, Oleg, <devel@driverdev.osuosl.org>, Dilger, Andreas,
	<gregkh@linuxfoundation.org>,
	<linux-kernel@vger.kernel.org>,
	<clabbe.montjoie@gmail.com>

Fix the following coding style errors in
drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c:
1. initializing lnet_table_header (static pointer) to NULL
2. missing spaces around '='

There's a third coding style error in this file which I've chosen to
not fix for clarity's sake. It is: initializing min_watchdog_ratelimit
(static int) to 0

Signed-off-by: Tal Shorer <tal.shorer@gmail.com>
---

drivers/staging/lustre/lustre/
libcfs/linux/linux-proc.c | 4 ++--

1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c
b/drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c
index c539e37..acc2e10 100644
--- a/drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c
+++ b/drivers/staging/lustre/lustre/libcfs/linux/linux-proc.c
@@ -65,7 +65,7 @@
#include <asm/div64.h>
#include "../tracefile.h"

-static struct ctl_table_header *lnet_table_header = NULL;
+static struct ctl_table_header *lnet_table_header;
extern char lnet_upcall[1024];
/**
  * The path of debug log dump upcall script.
@@ -308,7 +308,7 @@ static int proc_console_backoff(struct ctl_table
*table, int write,
        dummy.proc_handler = &proc_dointvec;

        if (!write) { /* read */
-               backoff= libcfs_console_backoff;
+               backoff = libcfs_console_backoff;
                rc = proc_dointvec(&dummy, write, buffer, lenp, ppos);
                return rc;
        }
--
2.2.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-02-10  0:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-09 17:20 [PATCH v3] staging: lustre: fix coding style errors Tal Shorer
2015-02-09 21:34 ` <gregkh@linuxfoundation.org>
2015-02-10  0:34   ` Drokin, Oleg
2015-02-10  0:52     ` <gregkh@linuxfoundation.org>

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox