Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228375
b: refs/heads/master
c: 9c26aa0
h: refs/heads/master
i:
  228373: 931390f
  228371: b13cf60
  228367: cfb3bb7
v: v3
  • Loading branch information
Haiyang Zhang authored and Greg Kroah-Hartman committed Dec 13, 2010
1 parent 31c164e commit 211a671
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 73 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c2a4efddc73bfd44479fc8d84dadbb352c4efb07
refs/heads/master: 9c26aa0d763a8390177f50ae841148706a249793
2 changes: 1 addition & 1 deletion trunk/drivers/staging/hv/netvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ int netvsc_initialize(struct hv_driver *drv)

driver->OnSend = netvsc_send;

RndisFilterInit(driver);
rndis_filter_init(driver);
return 0;
}

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/hv/netvsc_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ struct netvsc_device_info {

/* Interface */
int netvsc_initialize(struct hv_driver *drv);
int RndisFilterOnOpen(struct hv_device *Device);
int RndisFilterOnClose(struct hv_device *Device);
int rndis_filter_open(struct hv_device *dev);
int rndis_filter_close(struct hv_device *dev);

#endif /* _NETVSC_API_H_ */
4 changes: 2 additions & 2 deletions trunk/drivers/staging/hv/netvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static int netvsc_open(struct net_device *net)

if (netif_carrier_ok(net)) {
/* Open up the device */
ret = RndisFilterOnOpen(device_obj);
ret = rndis_filter_open(device_obj);
if (ret != 0) {
DPRINT_ERR(NETVSC_DRV,
"unable to open device (ret %d).", ret);
Expand All @@ -104,7 +104,7 @@ static int netvsc_close(struct net_device *net)

netif_stop_queue(net);

ret = RndisFilterOnClose(device_obj);
ret = rndis_filter_close(device_obj);
if (ret != 0)
DPRINT_ERR(NETVSC_DRV, "unable to close device (ret %d).", ret);

Expand Down
Loading

0 comments on commit 211a671

Please sign in to comment.