Lines Matching refs:reprobe
1777 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_reprobe_wk() local
1779 reprobe = container_of(wk, struct iwl_mvm_reprobe, work); in iwl_mvm_reprobe_wk()
1780 if (device_reprobe(reprobe->dev)) in iwl_mvm_reprobe_wk()
1781 dev_err(reprobe->dev, "reprobe failed!\n"); in iwl_mvm_reprobe_wk()
1782 put_device(reprobe->dev); in iwl_mvm_reprobe_wk()
1783 kfree(reprobe); in iwl_mvm_reprobe_wk()
1816 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_nic_restart() local
1831 reprobe = kzalloc(sizeof(*reprobe), GFP_ATOMIC); in iwl_mvm_nic_restart()
1832 if (!reprobe) { in iwl_mvm_nic_restart()
1836 reprobe->dev = get_device(mvm->trans->dev); in iwl_mvm_nic_restart()
1837 INIT_WORK(&reprobe->work, iwl_mvm_reprobe_wk); in iwl_mvm_nic_restart()
1838 schedule_work(&reprobe->work); in iwl_mvm_nic_restart()