Staging: hv: netvsc_drv: Make the function rndis_filter_receive() non-static

In preparation to getting rid of struct netvsc_driver,
make the function rndis_filter_receive()  non-static.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Abhishek Kane <v-abkane@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
K. Y. Srinivasan 2011-05-12 19:34:52 -07:00 committed by Greg Kroah-Hartman
parent f79adf8f13
commit 5fcc411519
2 changed files with 3 additions and 2 deletions

View File

@ -130,7 +130,8 @@ int rndis_filter_close(struct hv_device *dev);
int rndis_filte_device_add(struct hv_device *dev,
void *additional_info);
int rndis_filter_device_remove(struct hv_device *dev);
int rndis_filter_receive(struct hv_device *dev,
struct hv_netvsc_packet *pkt);

View File

@ -359,7 +359,7 @@ static void rndis_filter_receive_data(struct rndis_device *dev,
pkt);
}
static int rndis_filter_receive(struct hv_device *dev,
int rndis_filter_receive(struct hv_device *dev,
struct hv_netvsc_packet *pkt)
{
struct netvsc_device *net_dev = dev->ext;