commit | 86bbb1e1e0ba8878b554bbb912d348f3b819f5c4 | [log] [tgz] |
---|---|---|
author | Johannes Berg <johannes.berg@intel.com> | Wed Mar 22 21:44:59 2017 +0100 |
committer | Luca Coelho <luciano.coelho@intel.com> | Mon Jun 05 23:34:26 2017 +0300 |
tree | 9c9d704a5232a625c721a5f9e1217aa2621564e0 | |
parent | 504bd624663cde6141ab025445c93420c387062e [diff] |
iwlwifi: mvm: use schedule_delayed_work() There's no need to refer to system_wq directly, use the provided wrapper schedule_delayed_work(). Made with the following spatch: @@ expression E,F; @@ -queue_delayed_work(system_wq, E, F); +schedule_delayed_work(E, F); Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>