mirror of https://gitee.com/openkylin/linux.git
net/intel: remove __dev* attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev* markings will be going away. Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst, and __devexit. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Cc: Jesse Brandeburg <jesse.brandeburg@intel.com> Cc: Bruce Allan <bruce.w.allan@intel.com> Cc: Carolyn Wyborny <carolyn.wyborny@intel.com> Cc: Don Skidmore <donald.c.skidmore@intel.com> Cc: Greg Rose <gregory.v.rose@intel.com> Cc: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> Cc: Alex Duyck <alexander.h.duyck@intel.com> Cc: John Ronciak <john.ronciak@intel.com> Cc: Tushar Dave <tushar.n.dave@intel.com> Cc: e1000-devel@lists.sourceforge.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0329aba137
commit
9f9a12f8ca
|
@ -2829,7 +2829,7 @@ static const struct net_device_ops e100_netdev_ops = {
|
|||
.ndo_set_features = e100_set_features,
|
||||
};
|
||||
|
||||
static int __devinit e100_probe(struct pci_dev *pdev,
|
||||
static int e100_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev;
|
||||
|
@ -2981,7 +2981,7 @@ static int __devinit e100_probe(struct pci_dev *pdev,
|
|||
return err;
|
||||
}
|
||||
|
||||
static void __devexit e100_remove(struct pci_dev *pdev)
|
||||
static void e100_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *netdev = pci_get_drvdata(pdev);
|
||||
|
||||
|
@ -3167,7 +3167,7 @@ static struct pci_driver e100_driver = {
|
|||
.name = DRV_NAME,
|
||||
.id_table = e100_id_table,
|
||||
.probe = e100_probe,
|
||||
.remove = __devexit_p(e100_remove),
|
||||
.remove = e100_remove,
|
||||
#ifdef CONFIG_PM
|
||||
/* Power Management hooks */
|
||||
.suspend = e100_suspend,
|
||||
|
|
|
@ -111,7 +111,7 @@ void e1000_update_stats(struct e1000_adapter *adapter);
|
|||
static int e1000_init_module(void);
|
||||
static void e1000_exit_module(void);
|
||||
static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
|
||||
static void __devexit e1000_remove(struct pci_dev *pdev);
|
||||
static void e1000_remove(struct pci_dev *pdev);
|
||||
static int e1000_alloc_queues(struct e1000_adapter *adapter);
|
||||
static int e1000_sw_init(struct e1000_adapter *adapter);
|
||||
static int e1000_open(struct net_device *netdev);
|
||||
|
@ -202,7 +202,7 @@ static struct pci_driver e1000_driver = {
|
|||
.name = e1000_driver_name,
|
||||
.id_table = e1000_pci_tbl,
|
||||
.probe = e1000_probe,
|
||||
.remove = __devexit_p(e1000_remove),
|
||||
.remove = e1000_remove,
|
||||
#ifdef CONFIG_PM
|
||||
/* Power Management Hooks */
|
||||
.suspend = e1000_suspend,
|
||||
|
@ -938,7 +938,7 @@ static int e1000_init_hw_struct(struct e1000_adapter *adapter,
|
|||
* The OS initialization, configuring of the adapter private structure,
|
||||
* and a hardware reset occur.
|
||||
**/
|
||||
static int __devinit e1000_probe(struct pci_dev *pdev,
|
||||
static int e1000_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev;
|
||||
|
@ -1273,7 +1273,7 @@ static int __devinit e1000_probe(struct pci_dev *pdev,
|
|||
* memory.
|
||||
**/
|
||||
|
||||
static void __devexit e1000_remove(struct pci_dev *pdev)
|
||||
static void e1000_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *netdev = pci_get_drvdata(pdev);
|
||||
struct e1000_adapter *adapter = netdev_priv(netdev);
|
||||
|
@ -1309,7 +1309,7 @@ static void __devexit e1000_remove(struct pci_dev *pdev)
|
|||
* e1000_init_hw_struct MUST be called before this function
|
||||
**/
|
||||
|
||||
static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
|
||||
static int e1000_sw_init(struct e1000_adapter *adapter)
|
||||
{
|
||||
adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
|
||||
|
||||
|
@ -1340,7 +1340,7 @@ static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
|
|||
* number of queues at compile-time.
|
||||
**/
|
||||
|
||||
static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
|
||||
static int e1000_alloc_queues(struct e1000_adapter *adapter)
|
||||
{
|
||||
adapter->tx_ring = kcalloc(adapter->num_tx_queues,
|
||||
sizeof(struct e1000_tx_ring), GFP_KERNEL);
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
#define E1000_PARAM_INIT { [0 ... E1000_MAX_NIC] = OPTION_UNSET }
|
||||
#define E1000_PARAM(X, desc) \
|
||||
static int __devinitdata X[E1000_MAX_NIC+1] = E1000_PARAM_INIT; \
|
||||
static int X[E1000_MAX_NIC+1] = E1000_PARAM_INIT; \
|
||||
static unsigned int num_##X; \
|
||||
module_param_array_named(X, X, int, &num_##X, 0); \
|
||||
MODULE_PARM_DESC(X, desc);
|
||||
|
@ -205,7 +205,7 @@ struct e1000_option {
|
|||
} arg;
|
||||
};
|
||||
|
||||
static int __devinit e1000_validate_option(unsigned int *value,
|
||||
static int e1000_validate_option(unsigned int *value,
|
||||
const struct e1000_option *opt,
|
||||
struct e1000_adapter *adapter)
|
||||
{
|
||||
|
@ -268,7 +268,7 @@ static void e1000_check_copper_options(struct e1000_adapter *adapter);
|
|||
* in a variable in the adapter structure.
|
||||
**/
|
||||
|
||||
void __devinit e1000_check_options(struct e1000_adapter *adapter)
|
||||
void e1000_check_options(struct e1000_adapter *adapter)
|
||||
{
|
||||
struct e1000_option opt;
|
||||
int bd = adapter->bd_number;
|
||||
|
@ -534,7 +534,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter)
|
|||
* Handles speed and duplex options on fiber adapters
|
||||
**/
|
||||
|
||||
static void __devinit e1000_check_fiber_options(struct e1000_adapter *adapter)
|
||||
static void e1000_check_fiber_options(struct e1000_adapter *adapter)
|
||||
{
|
||||
int bd = adapter->bd_number;
|
||||
if (num_Speed > bd) {
|
||||
|
@ -560,7 +560,7 @@ static void __devinit e1000_check_fiber_options(struct e1000_adapter *adapter)
|
|||
* Handles speed and duplex options on copper adapters
|
||||
**/
|
||||
|
||||
static void __devinit e1000_check_copper_options(struct e1000_adapter *adapter)
|
||||
static void e1000_check_copper_options(struct e1000_adapter *adapter)
|
||||
{
|
||||
struct e1000_option opt;
|
||||
unsigned int speed, dplx, an;
|
||||
|
|
|
@ -2503,7 +2503,7 @@ void e1000e_write_itr(struct e1000_adapter *adapter, u32 itr)
|
|||
* e1000_alloc_queues - Allocate memory for all rings
|
||||
* @adapter: board private structure to initialize
|
||||
**/
|
||||
static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
|
||||
static int e1000_alloc_queues(struct e1000_adapter *adapter)
|
||||
{
|
||||
int size = sizeof(struct e1000_ring);
|
||||
|
||||
|
@ -3676,7 +3676,7 @@ void e1000e_reinit_locked(struct e1000_adapter *adapter)
|
|||
* Fields are initialized based on PCI device information and
|
||||
* OS network device settings (MTU size).
|
||||
**/
|
||||
static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
|
||||
static int e1000_sw_init(struct e1000_adapter *adapter)
|
||||
{
|
||||
struct net_device *netdev = adapter->netdev;
|
||||
|
||||
|
@ -6024,7 +6024,7 @@ static const struct net_device_ops e1000e_netdev_ops = {
|
|||
* The OS initialization, configuring of the adapter private structure,
|
||||
* and a hardware reset occur.
|
||||
**/
|
||||
static int __devinit e1000_probe(struct pci_dev *pdev,
|
||||
static int e1000_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev;
|
||||
|
@ -6361,7 +6361,7 @@ static int __devinit e1000_probe(struct pci_dev *pdev,
|
|||
* Hot-Plug event, or because the driver is going to be removed from
|
||||
* memory.
|
||||
**/
|
||||
static void __devexit e1000_remove(struct pci_dev *pdev)
|
||||
static void e1000_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *netdev = pci_get_drvdata(pdev);
|
||||
struct e1000_adapter *adapter = netdev_priv(netdev);
|
||||
|
@ -6512,7 +6512,7 @@ static struct pci_driver e1000_driver = {
|
|||
.name = e1000e_driver_name,
|
||||
.id_table = e1000_pci_tbl,
|
||||
.probe = e1000_probe,
|
||||
.remove = __devexit_p(e1000_remove),
|
||||
.remove = e1000_remove,
|
||||
#ifdef CONFIG_PM
|
||||
.driver = {
|
||||
.pm = &e1000_pm_ops,
|
||||
|
|
|
@ -53,7 +53,7 @@ MODULE_PARM_DESC(copybreak,
|
|||
*/
|
||||
#define E1000_PARAM_INIT { [0 ... E1000_MAX_NIC] = OPTION_UNSET }
|
||||
#define E1000_PARAM(X, desc) \
|
||||
static int __devinitdata X[E1000_MAX_NIC+1] \
|
||||
static int X[E1000_MAX_NIC+1] \
|
||||
= E1000_PARAM_INIT; \
|
||||
static unsigned int num_##X; \
|
||||
module_param_array_named(X, X, int, &num_##X, 0); \
|
||||
|
@ -172,7 +172,7 @@ struct e1000_option {
|
|||
} arg;
|
||||
};
|
||||
|
||||
static int __devinit e1000_validate_option(unsigned int *value,
|
||||
static int e1000_validate_option(unsigned int *value,
|
||||
const struct e1000_option *opt,
|
||||
struct e1000_adapter *adapter)
|
||||
{
|
||||
|
@ -235,7 +235,7 @@ static int __devinit e1000_validate_option(unsigned int *value,
|
|||
* value exists, a default value is used. The final value is stored
|
||||
* in a variable in the adapter structure.
|
||||
**/
|
||||
void __devinit e1000e_check_options(struct e1000_adapter *adapter)
|
||||
void e1000e_check_options(struct e1000_adapter *adapter)
|
||||
{
|
||||
struct e1000_hw *hw = &adapter->hw;
|
||||
int bd = adapter->bd_number;
|
||||
|
|
|
@ -118,7 +118,7 @@ static void igb_free_all_tx_resources(struct igb_adapter *);
|
|||
static void igb_free_all_rx_resources(struct igb_adapter *);
|
||||
static void igb_setup_mrqc(struct igb_adapter *);
|
||||
static int igb_probe(struct pci_dev *, const struct pci_device_id *);
|
||||
static void __devexit igb_remove(struct pci_dev *pdev);
|
||||
static void igb_remove(struct pci_dev *pdev);
|
||||
static int igb_sw_init(struct igb_adapter *);
|
||||
static int igb_open(struct net_device *);
|
||||
static int igb_close(struct net_device *);
|
||||
|
@ -228,7 +228,7 @@ static struct pci_driver igb_driver = {
|
|||
.name = igb_driver_name,
|
||||
.id_table = igb_pci_tbl,
|
||||
.probe = igb_probe,
|
||||
.remove = __devexit_p(igb_remove),
|
||||
.remove = igb_remove,
|
||||
#ifdef CONFIG_PM
|
||||
.driver.pm = &igb_pm_ops,
|
||||
#endif
|
||||
|
@ -1824,7 +1824,7 @@ void igb_set_fw_version(struct igb_adapter *adapter)
|
|||
* The OS initialization, configuring of the adapter private structure,
|
||||
* and a hardware reset occur.
|
||||
**/
|
||||
static int __devinit igb_probe(struct pci_dev *pdev,
|
||||
static int igb_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev;
|
||||
|
@ -2197,7 +2197,7 @@ static int __devinit igb_probe(struct pci_dev *pdev,
|
|||
* Hot-Plug event, or because the driver is going to be removed from
|
||||
* memory.
|
||||
**/
|
||||
static void __devexit igb_remove(struct pci_dev *pdev)
|
||||
static void igb_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *netdev = pci_get_drvdata(pdev);
|
||||
struct igb_adapter *adapter = netdev_priv(netdev);
|
||||
|
@ -2277,7 +2277,7 @@ static void __devexit igb_remove(struct pci_dev *pdev)
|
|||
* mor expensive time wise to disable SR-IOV than it is to allocate and free
|
||||
* the memory for the VFs.
|
||||
**/
|
||||
static void __devinit igb_probe_vfs(struct igb_adapter * adapter)
|
||||
static void igb_probe_vfs(struct igb_adapter *adapter)
|
||||
{
|
||||
#ifdef CONFIG_PCI_IOV
|
||||
struct pci_dev *pdev = adapter->pdev;
|
||||
|
@ -2338,7 +2338,7 @@ static void __devinit igb_probe_vfs(struct igb_adapter * adapter)
|
|||
* Fields are initialized based on PCI device information and
|
||||
* OS network device settings (MTU size).
|
||||
**/
|
||||
static int __devinit igb_sw_init(struct igb_adapter *adapter)
|
||||
static int igb_sw_init(struct igb_adapter *adapter)
|
||||
{
|
||||
struct e1000_hw *hw = &adapter->hw;
|
||||
struct net_device *netdev = adapter->netdev;
|
||||
|
|
|
@ -1098,7 +1098,7 @@ static int igbvf_request_msix(struct igbvf_adapter *adapter)
|
|||
* igbvf_alloc_queues - Allocate memory for all rings
|
||||
* @adapter: board private structure to initialize
|
||||
**/
|
||||
static int __devinit igbvf_alloc_queues(struct igbvf_adapter *adapter)
|
||||
static int igbvf_alloc_queues(struct igbvf_adapter *adapter)
|
||||
{
|
||||
struct net_device *netdev = adapter->netdev;
|
||||
|
||||
|
@ -1550,7 +1550,7 @@ void igbvf_reinit_locked(struct igbvf_adapter *adapter)
|
|||
* Fields are initialized based on PCI device information and
|
||||
* OS network device settings (MTU size).
|
||||
**/
|
||||
static int __devinit igbvf_sw_init(struct igbvf_adapter *adapter)
|
||||
static int igbvf_sw_init(struct igbvf_adapter *adapter)
|
||||
{
|
||||
struct net_device *netdev = adapter->netdev;
|
||||
s32 rc;
|
||||
|
@ -2618,7 +2618,7 @@ static const struct net_device_ops igbvf_netdev_ops = {
|
|||
* The OS initialization, configuring of the adapter private structure,
|
||||
* and a hardware reset occur.
|
||||
**/
|
||||
static int __devinit igbvf_probe(struct pci_dev *pdev,
|
||||
static int igbvf_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev;
|
||||
|
@ -2818,7 +2818,7 @@ static int __devinit igbvf_probe(struct pci_dev *pdev,
|
|||
* Hot-Plug event, or because the driver is going to be removed from
|
||||
* memory.
|
||||
**/
|
||||
static void __devexit igbvf_remove(struct pci_dev *pdev)
|
||||
static void igbvf_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *netdev = pci_get_drvdata(pdev);
|
||||
struct igbvf_adapter *adapter = netdev_priv(netdev);
|
||||
|
@ -2875,7 +2875,7 @@ static struct pci_driver igbvf_driver = {
|
|||
.name = igbvf_driver_name,
|
||||
.id_table = igbvf_pci_tbl,
|
||||
.probe = igbvf_probe,
|
||||
.remove = __devexit_p(igbvf_remove),
|
||||
.remove = igbvf_remove,
|
||||
#ifdef CONFIG_PM
|
||||
/* Power Management Hooks */
|
||||
.suspend = igbvf_suspend,
|
||||
|
|
|
@ -73,7 +73,7 @@ MODULE_DEVICE_TABLE(pci, ixgb_pci_tbl);
|
|||
static int ixgb_init_module(void);
|
||||
static void ixgb_exit_module(void);
|
||||
static int ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
|
||||
static void __devexit ixgb_remove(struct pci_dev *pdev);
|
||||
static void ixgb_remove(struct pci_dev *pdev);
|
||||
static int ixgb_sw_init(struct ixgb_adapter *adapter);
|
||||
static int ixgb_open(struct net_device *netdev);
|
||||
static int ixgb_close(struct net_device *netdev);
|
||||
|
@ -125,7 +125,7 @@ static struct pci_driver ixgb_driver = {
|
|||
.name = ixgb_driver_name,
|
||||
.id_table = ixgb_pci_tbl,
|
||||
.probe = ixgb_probe,
|
||||
.remove = __devexit_p(ixgb_remove),
|
||||
.remove = ixgb_remove,
|
||||
.err_handler = &ixgb_err_handler
|
||||
};
|
||||
|
||||
|
@ -391,7 +391,7 @@ static const struct net_device_ops ixgb_netdev_ops = {
|
|||
* and a hardware reset occur.
|
||||
**/
|
||||
|
||||
static int __devinit
|
||||
static int
|
||||
ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev = NULL;
|
||||
|
@ -558,7 +558,7 @@ ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||
* memory.
|
||||
**/
|
||||
|
||||
static void __devexit
|
||||
static void
|
||||
ixgb_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *netdev = pci_get_drvdata(pdev);
|
||||
|
@ -584,7 +584,7 @@ ixgb_remove(struct pci_dev *pdev)
|
|||
* OS network device settings (MTU size).
|
||||
**/
|
||||
|
||||
static int __devinit
|
||||
static int
|
||||
ixgb_sw_init(struct ixgb_adapter *adapter)
|
||||
{
|
||||
struct ixgb_hw *hw = &adapter->hw;
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
|
||||
#define IXGB_PARAM_INIT { [0 ... IXGB_MAX_NIC] = OPTION_UNSET }
|
||||
#define IXGB_PARAM(X, desc) \
|
||||
static int __devinitdata X[IXGB_MAX_NIC+1] \
|
||||
static int X[IXGB_MAX_NIC+1] \
|
||||
= IXGB_PARAM_INIT; \
|
||||
static unsigned int num_##X = 0; \
|
||||
module_param_array_named(X, X, int, &num_##X, 0); \
|
||||
|
@ -199,7 +199,7 @@ struct ixgb_option {
|
|||
} arg;
|
||||
};
|
||||
|
||||
static int __devinit
|
||||
static int
|
||||
ixgb_validate_option(unsigned int *value, const struct ixgb_option *opt)
|
||||
{
|
||||
if (*value == OPTION_UNSET) {
|
||||
|
@ -257,7 +257,7 @@ ixgb_validate_option(unsigned int *value, const struct ixgb_option *opt)
|
|||
* in a variable in the adapter structure.
|
||||
**/
|
||||
|
||||
void __devinit
|
||||
void
|
||||
ixgb_check_options(struct ixgb_adapter *adapter)
|
||||
{
|
||||
int bd = adapter->bd_number;
|
||||
|
|
|
@ -4462,7 +4462,7 @@ static void ixgbe_tx_timeout(struct net_device *netdev)
|
|||
* Fields are initialized based on PCI device information and
|
||||
* OS network device settings (MTU size).
|
||||
**/
|
||||
static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
|
||||
static int ixgbe_sw_init(struct ixgbe_adapter *adapter)
|
||||
{
|
||||
struct ixgbe_hw *hw = &adapter->hw;
|
||||
struct pci_dev *pdev = adapter->pdev;
|
||||
|
@ -7183,7 +7183,7 @@ int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
|
|||
* The OS initialization, configuring of the adapter private structure,
|
||||
* and a hardware reset occur.
|
||||
**/
|
||||
static int __devinit ixgbe_probe(struct pci_dev *pdev,
|
||||
static int ixgbe_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev;
|
||||
|
@ -7590,7 +7590,7 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
|
|||
* Hot-Plug event, or because the driver is going to be removed from
|
||||
* memory.
|
||||
**/
|
||||
static void __devexit ixgbe_remove(struct pci_dev *pdev)
|
||||
static void ixgbe_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
|
||||
struct net_device *netdev = adapter->netdev;
|
||||
|
@ -7830,7 +7830,7 @@ static struct pci_driver ixgbe_driver = {
|
|||
.name = ixgbe_driver_name,
|
||||
.id_table = ixgbe_pci_tbl,
|
||||
.probe = ixgbe_probe,
|
||||
.remove = __devexit_p(ixgbe_remove),
|
||||
.remove = ixgbe_remove,
|
||||
#ifdef CONFIG_PM
|
||||
.suspend = ixgbe_suspend,
|
||||
.resume = ixgbe_resume,
|
||||
|
|
|
@ -2009,7 +2009,7 @@ static void ixgbevf_clear_interrupt_scheme(struct ixgbevf_adapter *adapter)
|
|||
* Fields are initialized based on PCI device information and
|
||||
* OS network device settings (MTU size).
|
||||
**/
|
||||
static int __devinit ixgbevf_sw_init(struct ixgbevf_adapter *adapter)
|
||||
static int ixgbevf_sw_init(struct ixgbevf_adapter *adapter)
|
||||
{
|
||||
struct ixgbe_hw *hw = &adapter->hw;
|
||||
struct pci_dev *pdev = adapter->pdev;
|
||||
|
@ -3242,7 +3242,7 @@ static void ixgbevf_assign_netdev_ops(struct net_device *dev)
|
|||
* The OS initialization, configuring of the adapter private structure,
|
||||
* and a hardware reset occur.
|
||||
**/
|
||||
static int __devinit ixgbevf_probe(struct pci_dev *pdev,
|
||||
static int ixgbevf_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *ent)
|
||||
{
|
||||
struct net_device *netdev;
|
||||
|
@ -3414,7 +3414,7 @@ static int __devinit ixgbevf_probe(struct pci_dev *pdev,
|
|||
* Hot-Plug event, or because the driver is going to be removed from
|
||||
* memory.
|
||||
**/
|
||||
static void __devexit ixgbevf_remove(struct pci_dev *pdev)
|
||||
static void ixgbevf_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *netdev = pci_get_drvdata(pdev);
|
||||
struct ixgbevf_adapter *adapter = netdev_priv(netdev);
|
||||
|
@ -3528,7 +3528,7 @@ static struct pci_driver ixgbevf_driver = {
|
|||
.name = ixgbevf_driver_name,
|
||||
.id_table = ixgbevf_pci_tbl,
|
||||
.probe = ixgbevf_probe,
|
||||
.remove = __devexit_p(ixgbevf_remove),
|
||||
.remove = ixgbevf_remove,
|
||||
#ifdef CONFIG_PM
|
||||
/* Power Management Hooks */
|
||||
.suspend = ixgbevf_suspend,
|
||||
|
|
Loading…
Reference in New Issue