From f2c38406948b5c51a669c61b9184cc6affe4bb37 Mon Sep 17 00:00:00 2001 From: Changyeon Lee Date: Thu, 5 Dec 2024 16:45:44 +0900 Subject: [PATCH] hal-tdm-types: Remove wrong since tag Change-Id: I8740c08f45662fc776ed2e4f1af0e9415bbae70c --- include/hal-tdm-types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/hal-tdm-types.h b/include/hal-tdm-types.h index d2e65ab..754d062 100644 --- a/include/hal-tdm-types.h +++ b/include/hal-tdm-types.h @@ -107,9 +107,9 @@ typedef enum { */ typedef enum { HAL_TDM_OUTPUT_CAPABILITY_ASYNC_DPMS = (1 << 0), /**< if a outupt supports asynchronous DPMS operation */ - HAL_TDM_OUTPUT_CAPABILITY_HWC = (1 << 1), /**< if a outupt supports hwc operation @since 2.0.0*/ - HAL_TDM_OUTPUT_CAPABILITY_EXTENDED_DPMS = (1 << 2), /**< if a outupt supports extended DPMS operation @since 2.0.0 */ - HAL_TDM_OUTPUT_CAPABILITY_MIRROR = (1 << 3), /**< if a outupt supports the displying mirror image of the src_output @since 2.9.0 */ + HAL_TDM_OUTPUT_CAPABILITY_HWC = (1 << 1), /**< if a outupt supports hwc operation */ + HAL_TDM_OUTPUT_CAPABILITY_EXTENDED_DPMS = (1 << 2), /**< if a outupt supports extended DPMS operation */ + HAL_TDM_OUTPUT_CAPABILITY_MIRROR = (1 << 3), /**< if a outupt supports the displying mirror image of the src_output */ HAL_TDM_OUTPUT_CAPABILITY_NO_HW_VBLANK = (1 << 4), /**< if a outupt doesn't support hw vblank */ } hal_tdm_output_capability; -- 2.34.1