Commit 184231bd authored by Amit S. Kale's avatar Amit S. Kale Committed by Jeff Garzik

NetXen: Use pci_register_driver() instead of pci_module_init() in init_module

This will use pci_register_driver() instead of pci_module_init().
Signed-off-by: default avatarAmit S. Kale <amitkale@netxen.com>
Signed-off-by: default avatarRichard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 90f8b1d2
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
#include "netxen_nic_hw.h" #include "netxen_nic_hw.h"
#define NETXEN_NIC_BUILD_NO "1" #define NETXEN_NIC_BUILD_NO "2"
#define _NETXEN_NIC_LINUX_MAJOR 3 #define _NETXEN_NIC_LINUX_MAJOR 3
#define _NETXEN_NIC_LINUX_MINOR 3 #define _NETXEN_NIC_LINUX_MINOR 3
#define _NETXEN_NIC_LINUX_SUBVERSION 3 #define _NETXEN_NIC_LINUX_SUBVERSION 3
......
...@@ -1144,7 +1144,7 @@ static int __init netxen_init_module(void) ...@@ -1144,7 +1144,7 @@ static int __init netxen_init_module(void)
if ((netxen_workq = create_singlethread_workqueue("netxen")) == 0) if ((netxen_workq = create_singlethread_workqueue("netxen")) == 0)
return -ENOMEM; return -ENOMEM;
return pci_module_init(&netxen_driver); return pci_register_driver(&netxen_driver);
} }
module_init(netxen_init_module); module_init(netxen_init_module);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment