]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/xe: Move declarations under conditional branch
authorTejas Upadhyay <tejas.upadhyay@intel.com>
Tue, 7 Oct 2025 10:02:08 +0000 (15:32 +0530)
committerTejas Upadhyay <tejas.upadhyay@intel.com>
Wed, 8 Oct 2025 09:37:41 +0000 (15:07 +0530)
The xe_device_shutdown() function was needing a few declarations
that were only required under a specific condition. This change
moves those declarations to be within that conditional branch
to avoid unnecessary declarations.

Reviewed-by: Nitin Gote <nitin.r.gote@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20251007100208.1407021-1-tejas.upadhyay@intel.com
Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
drivers/gpu/drm/xe/xe_device.c

index 3869403236308667a3bcaa9057bd9851ab751721..ab0302d5f25fe90c4774479493a27ac5289c8c91 100644 (file)
@@ -986,12 +986,12 @@ void xe_device_remove(struct xe_device *xe)
 
 void xe_device_shutdown(struct xe_device *xe)
 {
-       struct xe_gt *gt;
-       u8 id;
-
        drm_dbg(&xe->drm, "Shutting down device\n");
 
        if (xe_driver_flr_disabled(xe)) {
+               struct xe_gt *gt;
+               u8 id;
+
                xe_display_pm_shutdown(xe);
 
                xe_irq_suspend(xe);