Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9ba2a626 authored by Tina Zhang's avatar Tina Zhang Committed by Jani Nikula
Browse files

drm/i915/gvt: remove the redundant info NULL check



The variable info is never NULL, which is checked by the caller. This
patch removes the redundant info NULL check logic.

Fixes: 695fbc08 ("drm/i915/gvt: replace the gvt_err with gvt_vgpu_err")
Signed-off-by: default avatarTina Zhang <tina.zhang@intel.com>
Signed-off-by: default avatarZhenyu Wang <zhenyuw@linux.intel.com>
(cherry picked from commit 865f03d4)
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
parent 729a0cd4
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -1340,13 +1340,6 @@ static int kvmgt_guest_init(struct mdev_device *mdev)

static bool kvmgt_guest_exit(struct kvmgt_guest_info *info)
{
	struct intel_vgpu *vgpu = info->vgpu;

	if (!info) {
		gvt_vgpu_err("kvmgt_guest_info invalid\n");
		return false;
	}

	kvm_page_track_unregister_notifier(info->kvm, &info->track_node);
	kvm_put_kvm(info->kvm);
	kvmgt_protect_table_destroy(info);