mirror of https://gitee.com/openkylin/linux.git
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:
parent
f79adf8f13
commit
5fcc411519
|
@ -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);
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue