From b424e0db8282f2785e3b05240d62886f1cc8f4b3 Mon Sep 17 00:00:00 2001 From: Michal Wajdeczko Date: Tue, 12 May 2026 20:33:37 +0200 Subject: [PATCH] drm/xe/display: Drop xe_display_driver_remove() stub The function was removed by commit d41d048043c4 ("drm/xe/display: Drop xe_display_driver_remove()") but we missed to remove its stub. Signed-off-by: Michal Wajdeczko Reviewed-by: Jani Nikula Link: https://patch.msgid.link/20260512183342.3374-3-michal.wajdeczko@intel.com --- drivers/gpu/drm/xe/display/xe_display.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/xe/display/xe_display.h b/drivers/gpu/drm/xe/display/xe_display.h index 76db95c25f7e..fb1db84db966 100644 --- a/drivers/gpu/drm/xe/display/xe_display.h +++ b/drivers/gpu/drm/xe/display/xe_display.h @@ -42,7 +42,6 @@ void xe_display_pm_runtime_resume(struct xe_device *xe); static inline int xe_display_driver_probe_defer(struct pci_dev *pdev) { return 0; } static inline void xe_display_driver_set_hooks(struct drm_driver *driver) { } -static inline void xe_display_driver_remove(struct xe_device *xe) {} static inline int xe_display_probe(struct xe_device *xe) { return 0; }