Lines Matching refs:reprobe
1230 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_reprobe_wk() local
1232 reprobe = container_of(wk, struct iwl_mvm_reprobe, work); in iwl_mvm_reprobe_wk()
1233 if (device_reprobe(reprobe->dev)) in iwl_mvm_reprobe_wk()
1234 dev_err(reprobe->dev, "reprobe failed!\n"); in iwl_mvm_reprobe_wk()
1235 kfree(reprobe); in iwl_mvm_reprobe_wk()
1265 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_nic_restart() local
1280 reprobe = kzalloc(sizeof(*reprobe), GFP_ATOMIC); in iwl_mvm_nic_restart()
1281 if (!reprobe) { in iwl_mvm_nic_restart()
1285 reprobe->dev = mvm->trans->dev; in iwl_mvm_nic_restart()
1286 INIT_WORK(&reprobe->work, iwl_mvm_reprobe_wk); in iwl_mvm_nic_restart()
1287 schedule_work(&reprobe->work); in iwl_mvm_nic_restart()