From cf15cb466dcda2478cc693ebaacd021358c53a2b Mon Sep 17 00:00:00 2001 From: shilong Date: Tue, 7 May 2024 03:37:06 +0000 Subject: [PATCH] =?UTF-8?q?=E5=A3=B0=E6=98=8E=E9=94=99=E8=AF=AF=E7=A0=81?= =?UTF-8?q?=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: shilong --- drivers/external_device_manager/base/ddk_types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/external_device_manager/base/ddk_types.h b/drivers/external_device_manager/base/ddk_types.h index 9af242d4b33..ad0a6ea3503 100644 --- a/drivers/external_device_manager/base/ddk_types.h +++ b/drivers/external_device_manager/base/ddk_types.h @@ -78,11 +78,11 @@ typedef enum { /** @error Operation failed */ DDK_FAILURE = 28600001, /** @error Invalid parameter */ - DDK_INVALID_PARAMETER, + DDK_INVALID_PARAMETER = 28600002, /** @error Invalid operation */ - DDK_INVALID_OPERATION, + DDK_INVALID_OPERATION = 28600003, /** @error Null pointer exception */ - DDK_NULL_PTR + DDK_NULL_PTR = 28600004 } DDK_RetCode; #ifdef __cplusplus } -- Gitee