diff options
author | Jani Nikula <jani.nikula@intel.com> | 2024-05-10 11:43:12 +0200 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2024-05-13 21:43:08 +0200 |
commit | bd7247e6df124dc9dfe048e319f364e0613d54c3 (patch) | |
tree | 377098b1cc0d44ec268a80b452c6a6ac41523def /drivers | |
parent | drm/i915: Rename the fb pinning functions to indicate the address space (diff) | |
download | linux-bd7247e6df124dc9dfe048e319f364e0613d54c3.tar.xz linux-bd7247e6df124dc9dfe048e319f364e0613d54c3.zip |
drm/xe/display: remove unused xe->enabled_irq_mask
The xe->enabled_irq_mask member has never been used for anything.
Acked-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240510094313.3422982-1-jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/xe/display/xe_display.c | 1 | ||||
-rw-r--r-- | drivers/gpu/drm/xe/xe_device_types.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c index 0de0566e5b39..fbe2c2eddea9 100644 --- a/drivers/gpu/drm/xe/display/xe_display.c +++ b/drivers/gpu/drm/xe/display/xe_display.c @@ -97,7 +97,6 @@ int xe_display_create(struct xe_device *xe) xe->display.hotplug.dp_wq = alloc_ordered_workqueue("xe-dp", 0); drmm_mutex_init(&xe->drm, &xe->sb_lock); - xe->enabled_irq_mask = ~0; return drmm_add_action_or_reset(&xe->drm, display_destroy, NULL); } diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index 14144a3814fc..fd343a1cb9b5 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -505,8 +505,6 @@ struct xe_device { /* only to allow build, not used functionally */ u32 irq_mask; - u32 enabled_irq_mask; - struct intel_uncore { spinlock_t lock; } uncore; |