From 52b50a6c661409c4e4d4068cfeab0bf47e3e5bc1 Mon Sep 17 00:00:00 2001 From: Prince George Date: Fri, 30 Aug 2024 02:11:35 +0000 Subject: [PATCH] Fix meta check --- inc/saiport.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/inc/saiport.h b/inc/saiport.h index fb29e3b51..f1de2e06b 100644 --- a/inc/saiport.h +++ b/inc/saiport.h @@ -74,7 +74,6 @@ typedef enum _sai_port_oper_status_t } sai_port_oper_status_t; - /** * @brief Attribute bitmap data for #SAI_PORT_ATTR_ERROR_STATUS */ @@ -82,7 +81,7 @@ typedef enum _sai_port_error_status_t { /** No errors */ SAI_PORT_ERROR_STATUS_CLEAR = 0, - + SAI_PORT_ERROR_STATUS_MAC_LOCAL_FAULT = 1, SAI_PORT_ERROR_STATUS_MAC_REMOTE_FAULT = 2, @@ -107,7 +106,7 @@ typedef struct _sai_port_oper_status_notification_t /** Port operational status */ sai_port_oper_status_t port_state; - /** Bitmap of various port error or fault status */ + /** Bitmap of various port error or fault status */ sai_port_error_status_t port_error_status; } sai_port_oper_status_notification_t;