Commit 9c26aa0d authored by Haiyang Zhang's avatar Haiyang Zhang Committed by Greg Kroah-Hartman

staging: hv: Convert camel cased functions in rndis_filter.c to lower cases

Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent c2a4efdd
...@@ -202,7 +202,7 @@ int netvsc_initialize(struct hv_driver *drv) ...@@ -202,7 +202,7 @@ int netvsc_initialize(struct hv_driver *drv)
driver->OnSend = netvsc_send; driver->OnSend = netvsc_send;
RndisFilterInit(driver); rndis_filter_init(driver);
return 0; return 0;
} }
......
...@@ -110,7 +110,7 @@ struct netvsc_device_info { ...@@ -110,7 +110,7 @@ struct netvsc_device_info {
/* Interface */ /* Interface */
int netvsc_initialize(struct hv_driver *drv); int netvsc_initialize(struct hv_driver *drv);
int RndisFilterOnOpen(struct hv_device *Device); int rndis_filter_open(struct hv_device *dev);
int RndisFilterOnClose(struct hv_device *Device); int rndis_filter_close(struct hv_device *dev);
#endif /* _NETVSC_API_H_ */ #endif /* _NETVSC_API_H_ */
...@@ -81,7 +81,7 @@ static int netvsc_open(struct net_device *net) ...@@ -81,7 +81,7 @@ static int netvsc_open(struct net_device *net)
if (netif_carrier_ok(net)) { if (netif_carrier_ok(net)) {
/* Open up the device */ /* Open up the device */
ret = RndisFilterOnOpen(device_obj); ret = rndis_filter_open(device_obj);
if (ret != 0) { if (ret != 0) {
DPRINT_ERR(NETVSC_DRV, DPRINT_ERR(NETVSC_DRV,
"unable to open device (ret %d).", ret); "unable to open device (ret %d).", ret);
...@@ -104,7 +104,7 @@ static int netvsc_close(struct net_device *net) ...@@ -104,7 +104,7 @@ static int netvsc_close(struct net_device *net)
netif_stop_queue(net); netif_stop_queue(net);
ret = RndisFilterOnClose(device_obj); ret = rndis_filter_close(device_obj);
if (ret != 0) if (ret != 0)
DPRINT_ERR(NETVSC_DRV, "unable to close device (ret %d).", ret); DPRINT_ERR(NETVSC_DRV, "unable to close device (ret %d).", ret);
......
This diff is collapsed.
...@@ -50,6 +50,6 @@ ...@@ -50,6 +50,6 @@
/* Interface */ /* Interface */
extern int RndisFilterInit(struct netvsc_driver *driver); extern int rndis_filter_init(struct netvsc_driver *driver);
#endif /* _RNDISFILTER_H_ */ #endif /* _RNDISFILTER_H_ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment