diff options
author | Haiyang Zhang <haiyangz@microsoft.com> | 2012-02-05 12:13:09 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-02-05 17:44:55 -0500 |
commit | 6f4c44460750dd4eb9926a58ab1ad0ceacef8284 (patch) | |
tree | 64a81c0b73d425421c3acbd22f61051870b730f8 /drivers | |
parent | 5fccab3b66d53883a97fc65e0c33f3ebf74e8ff9 (diff) | |
download | linux-3.10-6f4c44460750dd4eb9926a58ab1ad0ceacef8284.tar.gz linux-3.10-6f4c44460750dd4eb9926a58ab1ad0ceacef8284.tar.bz2 linux-3.10-6f4c44460750dd4eb9926a58ab1ad0ceacef8284.zip |
net/hyperv: Correct the assignment in netvsc_recv_callback()
The first assignment to variable "net" is wrong, but overridden by the
latter assignments. So the bug isn't manifested.
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/hyperv/netvsc_drv.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c index 466c58a7353..0ae7a1a6aeb 100644 --- a/drivers/net/hyperv/netvsc_drv.c +++ b/drivers/net/hyperv/netvsc_drv.c @@ -267,13 +267,10 @@ void netvsc_linkstatus_callback(struct hv_device *device_obj, int netvsc_recv_callback(struct hv_device *device_obj, struct hv_netvsc_packet *packet) { - struct net_device *net = dev_get_drvdata(&device_obj->device); + struct net_device *net; struct sk_buff *skb; - struct netvsc_device *net_device; - - net_device = hv_get_drvdata(device_obj); - net = net_device->ndev; + net = ((struct netvsc_device *)hv_get_drvdata(device_obj))->ndev; if (!net) { netdev_err(net, "got receive callback but net device" " not initialized yet\n"); |