drivers/net: Remove address use from assignments of function pointers
[deliverable/linux.git] / drivers / net / e1000 / e1000_main.c
index 5cc39ed289c62234d2f56cd9ad4c1eb841c26b8e..3e8ac4baae1b9f458e4360ff725434e11ba001aa 100644 (file)
@@ -962,15 +962,15 @@ static int __devinit e1000_probe(struct pci_dev *pdev,
        e1000_get_bus_info(hw);
 
        init_timer(&adapter->tx_fifo_stall_timer);
-       adapter->tx_fifo_stall_timer.function = &e1000_82547_tx_fifo_stall;
+       adapter->tx_fifo_stall_timer.function = e1000_82547_tx_fifo_stall;
        adapter->tx_fifo_stall_timer.data = (unsigned long)adapter;
 
        init_timer(&adapter->watchdog_timer);
-       adapter->watchdog_timer.function = &e1000_watchdog;
+       adapter->watchdog_timer.function = e1000_watchdog;
        adapter->watchdog_timer.data = (unsigned long) adapter;
 
        init_timer(&adapter->phy_info_timer);
-       adapter->phy_info_timer.function = &e1000_update_phy_info;
+       adapter->phy_info_timer.function = e1000_update_phy_info;
        adapter->phy_info_timer.data = (unsigned long)adapter;
 
        INIT_WORK(&adapter->reset_task, e1000_reset_task);
This page took 0.025938 seconds and 5 git commands to generate.