[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1310778683-3717-1-git-send-email-luismarianoguerra@gmail.com>
Date: Sat, 16 Jul 2011 02:11:23 +0100
From: Mariano Guerra <luismarianoguerra@...il.com>
To: gregkh@...e.de, abbotti@....co.uk, fmhess@...rs.sourceforge.net
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Mariano Guerra <luismarianoguerra@...il.com>
Subject: [PATCH] Staging: comedi: do not initialise statics to 0 or NULL
This is a patch to adv_pci_dio.c that fixes an error initializing
static struct pci_dio_private *pci_priv to NULL
removed the initialization.
found by the checkpatch.pl tool.
Signed-off-by: Mariano Guerra <luismarianoguerra@...il.com>
---
drivers/staging/comedi/drivers/adv_pci_dio.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/comedi/drivers/adv_pci_dio.c b/drivers/staging/comedi/drivers/adv_pci_dio.c
index d23799b..69334f6 100644
--- a/drivers/staging/comedi/drivers/adv_pci_dio.c
+++ b/drivers/staging/comedi/drivers/adv_pci_dio.c
@@ -422,7 +422,7 @@ struct pci_dio_private {
unsigned short IDIFiltrHigh[8]; /* IDI's filter value high signal */
};
-static struct pci_dio_private *pci_priv = NULL; /* list of allocated cards */
+static struct pci_dio_private *pci_priv; /* list of allocated cards */
#define devpriv ((struct pci_dio_private *)dev->private)
#define this_board ((const struct dio_boardtype *)dev->board_ptr)
--
1.7.6
--
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