drm_kms_helper_hotplug_event(dev);
 }
 
+static void drm_dp_mst_queue_probe_work(struct drm_dp_mst_topology_mgr *mgr)
+{
+       queue_work(system_long_wq, &mgr->work);
+}
+
 static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr *mgr,
                                 u8 *guid)
 {
                /* Write reset payload */
                drm_dp_dpcd_write_payload(mgr, 0, 0, 0x3f);
 
-               queue_work(system_long_wq, &mgr->work);
+               drm_dp_mst_queue_probe_work(mgr);
 
                ret = 0;
        } else {
         * state of our in-memory topology back into sync with reality. So,
         * restart the probing process as if we're probing a new hub
         */
-       queue_work(system_long_wq, &mgr->work);
+       drm_dp_mst_queue_probe_work(mgr);
        mutex_unlock(&mgr->lock);
 
        if (sync) {