aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBadari Pulavarty <[email protected]>2007-10-17 23:15:56 +0000
committerJeff Garzik <[email protected]>2007-10-18 00:23:30 +0000
commit0280f9f90b4c53e23f8ca98e581eb02f1a598a1a (patch)
treeccc8ddf6aa5c52975c4a2f93a6775420eb11550d
parentpcnet32: remove compile warnings in non-napi mode (diff)
downloadkernel-0280f9f90b4c53e23f8ca98e581eb02f1a598a1a.tar.gz
kernel-0280f9f90b4c53e23f8ca98e581eb02f1a598a1a.zip
vortex_up should initialize "err"
Simple compile warning fix. (against 2.6.23-git12) Thanks, Badari vortex_up() should initialize 'err' for a successful return. drivers/net/3c59x.c: In function `vortex_up': drivers/net/3c59x.c:1494: warning: `err' might be used uninitialized in this function Signed-off-by: Badari Pulavarty <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
-rw-r--r--drivers/net/3c59x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c
index 862f47223fdc..6f8e7d4cf74d 100644
--- a/drivers/net/3c59x.c
+++ b/drivers/net/3c59x.c
@@ -1491,7 +1491,7 @@ vortex_up(struct net_device *dev)
struct vortex_private *vp = netdev_priv(dev);
void __iomem *ioaddr = vp->ioaddr;
unsigned int config;
- int i, mii_reg1, mii_reg5, err;
+ int i, mii_reg1, mii_reg5, err = 0;
if (VORTEX_PCI(vp)) {
pci_set_power_state(VORTEX_PCI(vp), PCI_D0); /* Go active */