}
 }
 
-static int skl_i915_init(struct hdac_bus *bus)
-{
-       int err;
-
-       /*
-        * The HDMI codec is in GPU so we need to ensure that it is powered
-        * up and ready for probe
-        */
-       err = snd_hdac_i915_init(bus, true);
-       if (err < 0)
-               return err;
-
-       snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, true);
-
-       return 0;
-}
-
 static void skl_probe_work(struct work_struct *work)
 {
        struct skl_dev *skl = container_of(work, struct skl_dev, probe_work);
        struct hdac_ext_link *hlink;
        int err;
 
-       if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI)) {
-               err = skl_i915_init(bus);
-               if (err < 0)
-                       return;
-       }
+       if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI))
+               snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, true);
 
        skl_init_pci(skl);
        skl_dum_set(bus);
                goto out_dsp_free;
        }
 
+       if (IS_ENABLED(CONFIG_SND_SOC_HDAC_HDMI)) {
+               err = snd_hdac_i915_init(bus, false);
+               if (err < 0)
+                       goto out_dmic_unregister;
+       }
        schedule_work(&skl->probe_work);
 
        return 0;
 
+out_dmic_unregister:
+       skl_dmic_device_unregister(skl);
 out_dsp_free:
        skl_free_dsp(skl);
 out_clk_free: