Lines Matching refs:reprobe
1772 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_reprobe_wk() local
1774 reprobe = container_of(wk, struct iwl_mvm_reprobe, work); in iwl_mvm_reprobe_wk()
1775 if (device_reprobe(reprobe->dev)) in iwl_mvm_reprobe_wk()
1776 dev_err(reprobe->dev, "reprobe failed!\n"); in iwl_mvm_reprobe_wk()
1777 put_device(reprobe->dev); in iwl_mvm_reprobe_wk()
1778 kfree(reprobe); in iwl_mvm_reprobe_wk()
1811 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_nic_restart() local
1826 reprobe = kzalloc(sizeof(*reprobe), GFP_ATOMIC); in iwl_mvm_nic_restart()
1827 if (!reprobe) { in iwl_mvm_nic_restart()
1831 reprobe->dev = get_device(mvm->trans->dev); in iwl_mvm_nic_restart()
1832 INIT_WORK(&reprobe->work, iwl_mvm_reprobe_wk); in iwl_mvm_nic_restart()
1833 schedule_work(&reprobe->work); in iwl_mvm_nic_restart()