From 5a92da34ddb4ec75a037d4a956afa993876c67d4 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Tue, 5 Dec 2023 06:52:35 -0800 Subject: drm/xe: Rename info.supports_* to info.has_* Rename supports_mmio_ext and supports_usm to use a has_ prefix so the flags are grouped together. This settles on just one variant for positive info matching ("has_") and one for negative ("skip_"). Also make sure the has_* flags are grouped together in xe_pci.c. Reviewed-by: Koby Elbaz Reviewed-by: Gustavo Sousa Link: https://lore.kernel.org/r/20231205145235.2114761-1-lucas.demarchi@intel.com Signed-off-by: Lucas De Marchi Signed-off-by: Rodrigo Vivi --- drivers/gpu/drm/xe/xe_gt_pagefault.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/gpu/drm/xe/xe_gt_pagefault.c') diff --git a/drivers/gpu/drm/xe/xe_gt_pagefault.c b/drivers/gpu/drm/xe/xe_gt_pagefault.c index a5358064a4e0..4489aadc7a52 100644 --- a/drivers/gpu/drm/xe/xe_gt_pagefault.c +++ b/drivers/gpu/drm/xe/xe_gt_pagefault.c @@ -398,7 +398,7 @@ int xe_gt_pagefault_init(struct xe_gt *gt) struct xe_device *xe = gt_to_xe(gt); int i; - if (!xe->info.supports_usm) + if (!xe->info.has_usm) return 0; for (i = 0; i < NUM_PF_QUEUE; ++i) { @@ -431,7 +431,7 @@ void xe_gt_pagefault_reset(struct xe_gt *gt) struct xe_device *xe = gt_to_xe(gt); int i; - if (!xe->info.supports_usm) + if (!xe->info.has_usm) return; for (i = 0; i < NUM_PF_QUEUE; ++i) { -- cgit