[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1358189864-28735-1-git-send-email-dinggnu@gmail.com>
Date: Mon, 14 Jan 2013 18:57:43 +0000
From: Cong Ding <dinggnu@...il.com>
To: Chas Williams <chas@....nrl.navy.mil>,
linux-atm-general@...ts.sourceforge.net, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: Cong Ding <dinggnu@...il.com>
Subject: [PATCH] atm: fore200e.c: fix uninitialized variable
the variable err is uninitialized if all the macros in the function are
disabled.
Signed-off-by: Cong Ding <dinggnu@...il.com>
---
drivers/atm/fore200e.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/atm/fore200e.c b/drivers/atm/fore200e.c
index 204814e..d4725fc 100644
--- a/drivers/atm/fore200e.c
+++ b/drivers/atm/fore200e.c
@@ -2780,7 +2780,7 @@ static struct pci_driver fore200e_pca_driver = {
static int __init fore200e_module_init(void)
{
- int err;
+ int err = 0;
printk(FORE200E "FORE Systems 200E-series ATM driver - version " FORE200E_VERSION "\n");
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists