mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 22:14:36 -04:00
Staging: hv: Make rndis_filter_device_remove() 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:
committed by
Greg Kroah-Hartman
parent
10f5a6db19
commit
1405139c63
@@ -124,6 +124,7 @@ int rndis_filter_open(struct hv_device *dev);
|
||||
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);
|
||||
|
||||
|
||||
#endif /* _NETVSC_API_H_ */
|
||||
|
||||
@@ -84,8 +84,6 @@ struct rndis_filter_packet {
|
||||
};
|
||||
|
||||
|
||||
static int rndis_filter_device_remove(struct hv_device *dev);
|
||||
|
||||
static void rndis_filter_cleanup(struct hv_driver *drv);
|
||||
|
||||
static int rndis_filter_send(struct hv_device *dev,
|
||||
@@ -803,7 +801,7 @@ int rndis_filte_device_add(struct hv_device *dev,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int rndis_filter_device_remove(struct hv_device *dev)
|
||||
int rndis_filter_device_remove(struct hv_device *dev)
|
||||
{
|
||||
struct netvsc_device *net_dev = dev->ext;
|
||||
struct rndis_device *rndis_dev = net_dev->extension;
|
||||
|
||||
Reference in New Issue
Block a user