Lines Matching refs:reprobe
851 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_reprobe_wk() local
853 reprobe = container_of(wk, struct iwl_mvm_reprobe, work); in iwl_mvm_reprobe_wk()
854 if (device_reprobe(reprobe->dev)) in iwl_mvm_reprobe_wk()
855 dev_err(reprobe->dev, "reprobe failed!\n"); in iwl_mvm_reprobe_wk()
856 kfree(reprobe); in iwl_mvm_reprobe_wk()
917 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_nic_restart() local
932 reprobe = kzalloc(sizeof(*reprobe), GFP_ATOMIC); in iwl_mvm_nic_restart()
933 if (!reprobe) { in iwl_mvm_nic_restart()
937 reprobe->dev = mvm->trans->dev; in iwl_mvm_nic_restart()
938 INIT_WORK(&reprobe->work, iwl_mvm_reprobe_wk); in iwl_mvm_nic_restart()
939 schedule_work(&reprobe->work); in iwl_mvm_nic_restart()