mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-07 14:32:23 +00:00
staging: hv: move hv_netvsc out of staging area
hv_netvsc has been reviewed on netdev mailing list on 6/09/2011. All recommended changes have been made. We are requesting to move it out of staging area. Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: KY Srinivasan <kys@microsoft.com> Signed-off-by: Mike Sterling <Mike.Sterling@microsoft.com> Acked-by: Stephen Hemminger <shemminger@vyatta.com> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
3b724ca145
commit
95fa0405c5
@ -338,4 +338,6 @@ config VMXNET3
|
|||||||
To compile this driver as a module, choose M here: the
|
To compile this driver as a module, choose M here: the
|
||||||
module will be called vmxnet3.
|
module will be called vmxnet3.
|
||||||
|
|
||||||
|
source "drivers/net/hyperv/Kconfig"
|
||||||
|
|
||||||
endif # NETDEVICES
|
endif # NETDEVICES
|
||||||
|
@ -66,3 +66,5 @@ obj-$(CONFIG_USB_USBNET) += usb/
|
|||||||
obj-$(CONFIG_USB_ZD1201) += usb/
|
obj-$(CONFIG_USB_ZD1201) += usb/
|
||||||
obj-$(CONFIG_USB_IPHETH) += usb/
|
obj-$(CONFIG_USB_IPHETH) += usb/
|
||||||
obj-$(CONFIG_USB_CDC_PHONET) += usb/
|
obj-$(CONFIG_USB_CDC_PHONET) += usb/
|
||||||
|
|
||||||
|
obj-$(CONFIG_HYPERV_NET) += hyperv/
|
||||||
|
5
drivers/net/hyperv/Kconfig
Normal file
5
drivers/net/hyperv/Kconfig
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
config HYPERV_NET
|
||||||
|
tristate "Microsoft Hyper-V virtual network driver"
|
||||||
|
depends on HYPERV
|
||||||
|
help
|
||||||
|
Select this option to enable the Hyper-V virtual network driver.
|
3
drivers/net/hyperv/Makefile
Normal file
3
drivers/net/hyperv/Makefile
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
obj-$(CONFIG_HYPERV_NET) += hv_netvsc.o
|
||||||
|
|
||||||
|
hv_netvsc-y := netvsc_drv.o netvsc.o rndis_filter.o
|
@ -4,12 +4,6 @@ config HYPERV_STORAGE
|
|||||||
help
|
help
|
||||||
Select this option to enable the Hyper-V virtual storage driver.
|
Select this option to enable the Hyper-V virtual storage driver.
|
||||||
|
|
||||||
config HYPERV_NET
|
|
||||||
tristate "Microsoft Hyper-V virtual network driver"
|
|
||||||
depends on HYPERV && NET
|
|
||||||
help
|
|
||||||
Select this option to enable the Hyper-V virtual network driver.
|
|
||||||
|
|
||||||
config HYPERV_MOUSE
|
config HYPERV_MOUSE
|
||||||
tristate "Microsoft Hyper-V mouse driver"
|
tristate "Microsoft Hyper-V mouse driver"
|
||||||
depends on HYPERV && HID
|
depends on HYPERV && HID
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
obj-$(CONFIG_HYPERV_STORAGE) += hv_storvsc.o
|
obj-$(CONFIG_HYPERV_STORAGE) += hv_storvsc.o
|
||||||
obj-$(CONFIG_HYPERV_NET) += hv_netvsc.o
|
|
||||||
obj-$(CONFIG_HYPERV_MOUSE) += hv_mouse.o
|
obj-$(CONFIG_HYPERV_MOUSE) += hv_mouse.o
|
||||||
|
|
||||||
hv_storvsc-y := storvsc_drv.o
|
hv_storvsc-y := storvsc_drv.o
|
||||||
hv_netvsc-y := netvsc_drv.o netvsc.o rndis_filter.o
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
TODO:
|
TODO:
|
||||||
- audit the network driver
|
|
||||||
- audit the scsi driver
|
- audit the scsi driver
|
||||||
|
|
||||||
Please send patches for this code to Greg Kroah-Hartman <gregkh@suse.de>,
|
Please send patches for this code to Greg Kroah-Hartman <gregkh@suse.de>,
|
||||||
|
Loading…
Reference in New Issue
Block a user