projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afaee82
)
drivers/net/ns83820.c: fix a check-after-use
author
Adrian Bunk
<bunk@stusta.de>
Sun, 1 Jul 2007 20:21:10 +0000
(22:21 +0200)
committer
Jeff Garzik
<jeff@garzik.org>
Mon, 2 Jul 2007 12:24:52 +0000
(08:24 -0400)
This patch fixes a check-after-use spotted by the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/net/ns83820.c
patch
|
blob
|
history
diff --git
a/drivers/net/ns83820.c
b/drivers/net/ns83820.c
index
717d8e9
..
104aab3
100644
(file)
--- a/
drivers/net/ns83820.c
+++ b/
drivers/net/ns83820.c
@@
-1831,11
+1831,13
@@
static int __devinit ns83820_init_one(struct pci_dev *pci_dev, const struct pci_
ndev = alloc_etherdev(sizeof(struct ns83820));
dev = PRIV(ndev);
- dev->ndev = ndev;
+
err = -ENOMEM;
if (!dev)
goto out;
+ dev->ndev = ndev;
+
spin_lock_init(&dev->rx_info.lock);
spin_lock_init(&dev->tx_lock);
spin_lock_init(&dev->misc_lock);