diff --git a/kernel/include/los_queue.h b/kernel/include/los_queue.h
index 5c2629dd..7dc50cc9 100644
--- a/kernel/include/los_queue.h
+++ b/kernel/include/los_queue.h
@@ -453,7 +453,7 @@ extern UINT32 LOS_QueueCreateStatic(const CHAR *queueName,
* first.
*
bufferAddr stores the obtained data.
* Do not read or write a queue in unblocking modes such as an interrupt.
- * This API cannot be called before the Huawei LiteOS is initialized.
+ * This API cannot be called before the kernel is initialized.
* The argument timeOut is a relative time.
*
*
@@ -498,7 +498,7 @@ extern UINT32 LOS_QueueReadCopy(UINT32 queueID,
*
* - The specific queue should be created firstly.
* - Do not read or write a queue in unblocking modes such as interrupt.
- * - This API cannot be called before the Huawei LiteOS is initialized.
+ * - This API cannot be called before the kernel is initialized.
* - The data to be written is of the size specified by bufferSize and is stored at the address specified by
* BufferAddr.
* - The argument timeOut is a relative time.
@@ -547,7 +547,7 @@ extern UINT32 LOS_QueueWriteCopy(UINT32 queueID,
* read first.
* - bufferAddr stores the obtained data address.
* - Do not read or write a queue in unblocking modes such as an interrupt.
- * - This API cannot be called before the Huawei LiteOS is initialized.
+ * - This API cannot be called before the kernel is initialized.
* - The argument timeOut is a relative time.
* - The bufferSize is not really used in LOS_QueueRead, because the interface is only used to
* obtain the address of data.
@@ -592,7 +592,7 @@ extern UINT32 LOS_QueueRead(UINT32 queueID,
*
* - The specific queue should be created firstly.
* - Do not read or write a queue in unblocking modes such as an interrupt.
- * - This API cannot be called before the Huawei LiteOS is initialized.
+ * - This API cannot be called before the kernel is initialized.
* - The address of the data of the size specified by bufferSize and stored at the address specified by
* BufferAddr is to be written.
* - The argument timeOut is a relative time.
@@ -639,7 +639,7 @@ extern UINT32 LOS_QueueWrite(UINT32 queueID,
* @attention
*
* - Do not read or write a queue in unblocking modes such as an interrupt.
- * - This API cannot be called before the Huawei LiteOS is initialized.
+ * - This API cannot be called before the kernel is initialized.
* - The address of the data of the size specified by bufferSize and stored at the address specified by
* BufferAddr is to be written.
* - The argument timeOut is a relative time.
@@ -686,7 +686,7 @@ extern UINT32 LOS_QueueWriteHead(UINT32 queueID,
* @attention
*
* - Do not read or write a queue in unblocking modes such as an interrupt.
- * - This API cannot be called before the Huawei LiteOS is initialized.
+ * - This API cannot be called before the kernel is initialized.
* - The address of the data of the size specified by bufferSize and stored at the address specified by
* BufferAddr is to be written.
* - The argument timeOut is a relative time.
@@ -889,7 +889,7 @@ extern LosQueueCB *g_allQueue;
* @attention
*
* - Do not alloc memory in unblocking modes such as interrupt.
- * - This API cannot be called before the Huawei LiteOS is initialized.
+ * - This API cannot be called before the kernel is initialized.
* - The argument timeOut is a relative time.
*
*
@@ -913,7 +913,7 @@ extern VOID *OsQueueMailAlloc(UINT32 queueID, VOID *mailPool, UINT32 timeOut);
* This API is used to free a stationary memory for a mail according to queueID.
* @attention
*
- * - This API cannot be called before the Huawei LiteOS is initialized.
+ * - This API cannot be called before the kernel is initialized.
*
*
* @param queueID [IN] Queue ID. The value range is [1,LOSCFG_BASE_IPC_QUEUE_LIMIT].