From: Matthew Brost Date: Thu, 31 Aug 2023 14:54:21 +0000 (-0700) Subject: drm/xe: Convert xe_vma_op_flags to BIT macros X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=35dfb48462d92ce5514f883c461857ca55bdb499;p=linux.git drm/xe: Convert xe_vma_op_flags to BIT macros Rather than open code the shift for values, use BIT macros. Reviewed-by: Rodrigo Vivi Signed-off-by: Matthew Brost Signed-off-by: Rodrigo Vivi --- diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h index f8675c3da3b14..40ce8953bacbb 100644 --- a/drivers/gpu/drm/xe/xe_vm_types.h +++ b/drivers/gpu/drm/xe/xe_vm_types.h @@ -370,11 +370,11 @@ struct xe_vma_op_prefetch { /** enum xe_vma_op_flags - flags for VMA operation */ enum xe_vma_op_flags { /** @XE_VMA_OP_FIRST: first VMA operation for a set of syncs */ - XE_VMA_OP_FIRST = (0x1 << 0), + XE_VMA_OP_FIRST = BIT(0), /** @XE_VMA_OP_LAST: last VMA operation for a set of syncs */ - XE_VMA_OP_LAST = (0x1 << 1), + XE_VMA_OP_LAST = BIT(1), /** @XE_VMA_OP_COMMITTED: VMA operation committed */ - XE_VMA_OP_COMMITTED = (0x1 << 2), + XE_VMA_OP_COMMITTED = BIT(2), }; /** struct xe_vma_op - VMA operation */