public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 6/6] Staging: comedi: fix initialise statics to 0 or NULL issue in ni_mio_cs.c.
@ 2012-01-02 13:17 Ravishankar karkala Mallikarjunayya
  2012-01-02 20:45 ` Ryan Mallon
  2012-01-03  0:19 ` KY Srinivasan
  0 siblings, 2 replies; 3+ messages in thread
From: Ravishankar karkala Mallikarjunayya @ 2012-01-02 13:17 UTC (permalink / raw)
  To: gregkh, wfp5p
  Cc: devel, linux-kernel, dan.carpenter, rmallon, joe,
	valdis.kletnieks, jj, Ravishankar karkala Mallikarjunayya

This is a patch to the ni_mio_cs.c file that fixes up a initialise
statics to 0 or NULL warning found by the checkpatch.pl tool.

Breaks the build.

Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
---
 drivers/staging/comedi/drivers/ni_mio_cs.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/comedi/drivers/ni_mio_cs.c b/drivers/staging/comedi/drivers/ni_mio_cs.c
index 53ec24b..cb3d08b 100644
--- a/drivers/staging/comedi/drivers/ni_mio_cs.c
+++ b/drivers/staging/comedi/drivers/ni_mio_cs.c
@@ -258,7 +258,7 @@ static void mio_cs_config(struct pcmcia_device *link);
 static void cs_release(struct pcmcia_device *link);
 static void cs_detach(struct pcmcia_device *);
 
-static struct pcmcia_device *cur_dev = NULL;
+static struct pcmcia_device *cur_dev;
 
 static int cs_attach(struct pcmcia_device *link)
 {
@@ -351,6 +351,8 @@ static int mio_cs_attach(struct comedi_device *dev, struct comedi_devconfig *it)
 	printk("comedi%d: %s: DAQCard: io 0x%04lx, irq %u, ",
 	       dev->minor, dev->driver->driver_name, dev->iobase, irq);
 
+
+
 #if 0
 	{
 		int i;
@@ -400,7 +402,7 @@ static int mio_cs_attach(struct comedi_device *dev, struct comedi_devconfig *it)
 }
 
 static int ni_getboardtype(struct comedi_device *dev,
-			   struct pcmcia_device *link)
+		struct pcmcia_device *link)
 {
 	int i;
 
-- 
1.7.0.4


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

end of thread, other threads:[~2012-01-03  0:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-02 13:17 [PATCH 6/6] Staging: comedi: fix initialise statics to 0 or NULL issue in ni_mio_cs.c Ravishankar karkala Mallikarjunayya
2012-01-02 20:45 ` Ryan Mallon
2012-01-03  0:19 ` KY Srinivasan

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