Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0280f9f90b4c53e23f8ca98e581eb02f1a598a1a
Commit:     0280f9f90b4c53e23f8ca98e581eb02f1a598a1a
Parent:     6ad6c75626cf8b69cd28ae0a81227503a7c3966e
Author:     Badari Pulavarty <[EMAIL PROTECTED]>
AuthorDate: Wed Oct 17 16:15:56 2007 -0700
Committer:  Jeff Garzik <[EMAIL PROTECTED]>
CommitDate: Wed Oct 17 20:23:30 2007 -0400

    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]>
---
 drivers/net/3c59x.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c
index 862f472..6f8e7d4 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 */
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to