OSDN Git Service

drm/i915/gvt: rename intel_vgpu_ops to intel_vgpu_mdev_ops
authorChristoph Hellwig <hch@lst.de>
Mon, 11 Apr 2022 14:13:32 +0000 (16:13 +0200)
committerZhi Wang <zhi.a.wang@intel.com>
Thu, 21 Apr 2022 11:36:56 +0000 (07:36 -0400)
Free the intel_vgpu_ops symbol name for something that fits better.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20220411141403.86980-4-hch@lst.de
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Zhi Wang <zhi.a.wang@intel.com>
drivers/gpu/drm/i915/gvt/kvmgt.c

index 5231ce8..e3f0c55 100644 (file)
@@ -1765,7 +1765,7 @@ static const struct attribute_group *intel_vgpu_groups[] = {
        NULL,
 };
 
-static struct mdev_parent_ops intel_vgpu_ops = {
+static struct mdev_parent_ops intel_vgpu_mdev_ops = {
        .mdev_attr_groups       = intel_vgpu_groups,
        .create                 = intel_vgpu_create,
        .remove                 = intel_vgpu_remove,
@@ -1788,9 +1788,9 @@ static int kvmgt_host_init(struct device *dev, void *gvt, const void *ops)
                return ret;
 
        intel_gvt_ops = ops;
-       intel_vgpu_ops.supported_type_groups = gvt_vgpu_type_groups;
+       intel_vgpu_mdev_ops.supported_type_groups = gvt_vgpu_type_groups;
 
-       ret = mdev_register_device(dev, &intel_vgpu_ops);
+       ret = mdev_register_device(dev, &intel_vgpu_mdev_ops);
        if (ret)
                intel_gvt_cleanup_vgpu_type_groups((struct intel_gvt *)gvt);