Lines Matching refs:reprobe
907 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_reprobe_wk() local
909 reprobe = container_of(wk, struct iwl_mvm_reprobe, work); in iwl_mvm_reprobe_wk()
910 if (device_reprobe(reprobe->dev)) in iwl_mvm_reprobe_wk()
911 dev_err(reprobe->dev, "reprobe failed!\n"); in iwl_mvm_reprobe_wk()
912 kfree(reprobe); in iwl_mvm_reprobe_wk()
974 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_nic_restart() local
989 reprobe = kzalloc(sizeof(*reprobe), GFP_ATOMIC); in iwl_mvm_nic_restart()
990 if (!reprobe) { in iwl_mvm_nic_restart()
994 reprobe->dev = mvm->trans->dev; in iwl_mvm_nic_restart()
995 INIT_WORK(&reprobe->work, iwl_mvm_reprobe_wk); in iwl_mvm_nic_restart()
996 schedule_work(&reprobe->work); in iwl_mvm_nic_restart()