summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/i915/i915_file_private.h
diff options
context:
space:
mode:
authorAndi Shyti <andi.shyti@linux.intel.com>2023-03-22 03:16:11 +0300
committerAndi Shyti <andi.shyti@linux.intel.com>2023-03-23 03:53:44 +0300
commitbadb30270960df505cf245bad8844c227731fb0b (patch)
treea747a0b3a2f063aef85b052edfb7765d45f9fa1a /drivers/gpu/drm/i915/i915_file_private.h
parent80ac788a8d2fc8904cce97b7873b6d8fd513a46d (diff)
downloadlinux-badb30270960df505cf245bad8844c227731fb0b.tar.xz
drm/i915: Use i915 instead of dev_priv insied the file_priv structure
In the process of renaming all instances of 'dev_priv' to 'i915', start using 'i915' within the 'drm_i915_file_private' structure. Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230322001611.632321-1-andi.shyti@linux.intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/i915_file_private.h')
-rw-r--r--drivers/gpu/drm/i915/i915_file_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_file_private.h b/drivers/gpu/drm/i915/i915_file_private.h
index f42877869692..c9cb8eecacde 100644
--- a/drivers/gpu/drm/i915/i915_file_private.h
+++ b/drivers/gpu/drm/i915/i915_file_private.h
@@ -15,7 +15,7 @@ struct drm_file;
struct i915_drm_client;
struct drm_i915_file_private {
- struct drm_i915_private *dev_priv;
+ struct drm_i915_private *i915;
union {
struct drm_file *file;