m->type != INTEL_GVT_HYPERVISOR_XEN)
                return -EINVAL;
 
-       /* Get a reference for device model module */
-       if (!try_module_get(THIS_MODULE))
-               return -ENODEV;
-
        intel_gvt_host.mpt = m;
        intel_gvt_host.hypervisor_type = m->type;
        gvt = (void *)kdev_to_i915(intel_gvt_host.dev)->gvt;
        if (ret < 0) {
                gvt_err("Failed to init %s hypervisor module\n",
                        supported_hypervisors[intel_gvt_host.hypervisor_type]);
-               module_put(THIS_MODULE);
                return -ENODEV;
        }
        gvt_dbg_core("Running with hypervisor %s in host mode\n",
 {
        void *gvt = (void *)kdev_to_i915(intel_gvt_host.dev)->gvt;
        intel_gvt_hypervisor_host_exit(intel_gvt_host.dev, gvt);
-       module_put(THIS_MODULE);
 }
 EXPORT_SYMBOL_GPL(intel_gvt_unregister_hypervisor);