[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1409122101-6710-1-git-send-email-naszar@ya.ru>
Date: Wed, 27 Aug 2014 17:48:21 +1100
From: naszar <naszar@...ru>
To: devel@...verdev.osuosl.org
Cc: linux-kernel@...r.kernel.org, Jingoo Han <jg1.han@...sung.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
"Vladimir A. Nazarenko" <naszar@...ru>
Subject: [PATCH] Staging: comedi: Fix code style in jr3_pci.c
From: Vladimir A. Nazarenko <naszar@...ru>
Static variables are initialised to 0 by GCC.
Fixes checkpatch.pl error:
ERROR: do not initialise statics to 0 or NULL
#684: FILE: jr3_pci.c:684:
+ static const struct jr3_pci_board *board = NULL;
Signed-off-by: Vladimir A. Nazarenko <naszar@...ru>
---
drivers/staging/comedi/drivers/jr3_pci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/comedi/drivers/jr3_pci.c b/drivers/staging/comedi/drivers/jr3_pci.c
index 7b20e19..81fab2d 100644
--- a/drivers/staging/comedi/drivers/jr3_pci.c
+++ b/drivers/staging/comedi/drivers/jr3_pci.c
@@ -681,7 +681,7 @@ static int jr3_pci_auto_attach(struct comedi_device *dev,
unsigned long context)
{
struct pci_dev *pcidev = comedi_to_pci_dev(dev);
- static const struct jr3_pci_board *board = NULL;
+ static const struct jr3_pci_board *board;
struct jr3_pci_dev_private *devpriv;
struct jr3_pci_subdev_private *spriv;
struct comedi_subdevice *s;
--
2.1.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists