diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2011-08-25 16:48:42 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-08-25 21:18:36 (GMT) |
commit | d7dc6b9c2e8fec9f9d6ebe518918d028a505ef7b (patch) | |
tree | ff4779e433b946447c2d5ae9d6b97cc6ed3b5593 | |
parent | 4e80fbfc7ff4e063d96b258aaa3da97e8e4dc6a5 (diff) | |
download | linux-d7dc6b9c2e8fec9f9d6ebe518918d028a505ef7b.tar.xz |
Staging: hv: netvsc: Get rid of the PCI signature
Now that we have implemented a vmbus specific mechanism for auto-loading,
get rid of the PCI signature.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/hv/netvsc_drv.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/staging/hv/netvsc_drv.c b/drivers/staging/hv/netvsc_drv.c index c3b7de1..1c3c5fe 100644 --- a/drivers/staging/hv/netvsc_drv.c +++ b/drivers/staging/hv/netvsc_drv.c @@ -34,7 +34,6 @@ #include <linux/in.h> #include <linux/slab.h> #include <linux/dmi.h> -#include <linux/pci.h> #include <net/arp.h> #include <net/route.h> #include <net/sock.h> @@ -471,13 +470,6 @@ static int __init netvsc_drv_init(void) return ret; } -static const struct pci_device_id __initconst -hv_netvsc_pci_table[] __maybe_unused = { - { PCI_DEVICE(0x1414, 0x5353) }, /* VGA compatible controller */ - { 0 } -}; -MODULE_DEVICE_TABLE(pci, hv_netvsc_pci_table); - MODULE_LICENSE("GPL"); MODULE_VERSION(HV_DRV_VERSION); MODULE_DESCRIPTION("Microsoft Hyper-V network driver"); |