From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from n9-26.mail.139.com ([221.176.9.26]:43933 "EHLO n9-26.mail.139.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751519AbbLDIPl (ORCPT ); Fri, 4 Dec 2015 03:15:41 -0500 From: Wei Tang To: trond.myklebust@primarydata.com, anna.schumaker@netapp.com Cc: linux-nfs@vger.kernel.org, Wei Tang Subject: [PATCH 1/2] nfs: do not initialise statics to 0 Date: Fri, 4 Dec 2015 16:06:57 +0800 Message-Id: <1449216417-4201-1-git-send-email-tangwei@cmss.chinamobile.com> Sender: linux-nfs-owner@vger.kernel.org List-ID: This patch fixes the checkpatch.pl error to nfs4sysctl.c: ERROR: do not initialise statics to 0 Signed-off-by: Wei Tang --- fs/nfs/nfs4sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/nfs/nfs4sysctl.c b/fs/nfs/nfs4sysctl.c index 0fbd3ab..8693d77 100644 --- a/fs/nfs/nfs4sysctl.c +++ b/fs/nfs/nfs4sysctl.c @@ -12,7 +12,7 @@ #include "nfs4idmap.h" #include "callback.h" -static const int nfs_set_port_min = 0; +static const int nfs_set_port_min; static const int nfs_set_port_max = 65535; static struct ctl_table_header *nfs4_callback_sysctl_table; -- 1.9.1