Lines Matching refs:reprobe
2008 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_reprobe_wk() local
2010 reprobe = container_of(wk, struct iwl_mvm_reprobe, work); in iwl_mvm_reprobe_wk()
2011 if (device_reprobe(reprobe->dev)) in iwl_mvm_reprobe_wk()
2012 dev_err(reprobe->dev, "reprobe failed!\n"); in iwl_mvm_reprobe_wk()
2013 put_device(reprobe->dev); in iwl_mvm_reprobe_wk()
2014 kfree(reprobe); in iwl_mvm_reprobe_wk()
2047 struct iwl_mvm_reprobe *reprobe; in iwl_mvm_nic_restart() local
2062 reprobe = kzalloc(sizeof(*reprobe), GFP_ATOMIC); in iwl_mvm_nic_restart()
2063 if (!reprobe) { in iwl_mvm_nic_restart()
2067 reprobe->dev = get_device(mvm->trans->dev); in iwl_mvm_nic_restart()
2068 INIT_WORK(&reprobe->work, iwl_mvm_reprobe_wk); in iwl_mvm_nic_restart()
2069 schedule_work(&reprobe->work); in iwl_mvm_nic_restart()