mirror of https://gitee.com/openkylin/linux.git
staging: wilc1000: Fix typo in wilc_msgqueue.h
This patch fix some spelling typo in wilc_msgqueue.h Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f6e0e2a564
commit
6b05fcc9c6
|
@ -35,7 +35,7 @@ typedef struct __MessageQueue_struct {
|
||||||
* any other message queue having the same name in the system
|
* any other message queue having the same name in the system
|
||||||
* @param[in,out] pHandle handle to the message queue object
|
* @param[in,out] pHandle handle to the message queue object
|
||||||
* @param[in] pstrAttrs Optional attributes, NULL for default
|
* @param[in] pstrAttrs Optional attributes, NULL for default
|
||||||
* @return Error code indicating sucess/failure
|
* @return Error code indicating success/failure
|
||||||
* @author syounan
|
* @author syounan
|
||||||
* @date 30 Aug 2010
|
* @date 30 Aug 2010
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
|
@ -44,7 +44,7 @@ int wilc_mq_create(WILC_MsgQueueHandle *pHandle);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Sends a message
|
* @brief Sends a message
|
||||||
* @details Sends a message, this API will block unil the message is
|
* @details Sends a message, this API will block until the message is
|
||||||
* actually sent or until it is timedout (as long as the feature
|
* actually sent or until it is timedout (as long as the feature
|
||||||
* CONFIG_WILC_MSG_QUEUE_TIMEOUT is enabled and pstrAttrs->u32Timeout
|
* CONFIG_WILC_MSG_QUEUE_TIMEOUT is enabled and pstrAttrs->u32Timeout
|
||||||
* is not set to WILC_OS_INFINITY), zero timeout is a valid value
|
* is not set to WILC_OS_INFINITY), zero timeout is a valid value
|
||||||
|
@ -52,7 +52,7 @@ int wilc_mq_create(WILC_MsgQueueHandle *pHandle);
|
||||||
* @param[in] pvSendBuffer pointer to the data to send
|
* @param[in] pvSendBuffer pointer to the data to send
|
||||||
* @param[in] u32SendBufferSize the size of the data to send
|
* @param[in] u32SendBufferSize the size of the data to send
|
||||||
* @param[in] pstrAttrs Optional attributes, NULL for default
|
* @param[in] pstrAttrs Optional attributes, NULL for default
|
||||||
* @return Error code indicating sucess/failure
|
* @return Error code indicating success/failure
|
||||||
* @author syounan
|
* @author syounan
|
||||||
* @date 30 Aug 2010
|
* @date 30 Aug 2010
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
|
@ -62,7 +62,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Receives a message
|
* @brief Receives a message
|
||||||
* @details Receives a message, this API will block unil a message is
|
* @details Receives a message, this API will block until a message is
|
||||||
* received or until it is timedout (as long as the feature
|
* received or until it is timedout (as long as the feature
|
||||||
* CONFIG_WILC_MSG_QUEUE_TIMEOUT is enabled and pstrAttrs->u32Timeout
|
* CONFIG_WILC_MSG_QUEUE_TIMEOUT is enabled and pstrAttrs->u32Timeout
|
||||||
* is not set to WILC_OS_INFINITY), zero timeout is a valid value
|
* is not set to WILC_OS_INFINITY), zero timeout is a valid value
|
||||||
|
@ -71,7 +71,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
|
||||||
* @param[in] u32RecvBufferSize the size of the receive buffer
|
* @param[in] u32RecvBufferSize the size of the receive buffer
|
||||||
* @param[out] pu32ReceivedLength the length of received data
|
* @param[out] pu32ReceivedLength the length of received data
|
||||||
* @param[in] pstrAttrs Optional attributes, NULL for default
|
* @param[in] pstrAttrs Optional attributes, NULL for default
|
||||||
* @return Error code indicating sucess/failure
|
* @return Error code indicating success/failure
|
||||||
* @author syounan
|
* @author syounan
|
||||||
* @date 30 Aug 2010
|
* @date 30 Aug 2010
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
|
@ -84,7 +84,7 @@ int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
|
||||||
* @brief Destroys an existing Message queue
|
* @brief Destroys an existing Message queue
|
||||||
* @param[in] pHandle handle to the message queue object
|
* @param[in] pHandle handle to the message queue object
|
||||||
* @param[in] pstrAttrs Optional attributes, NULL for default
|
* @param[in] pstrAttrs Optional attributes, NULL for default
|
||||||
* @return Error code indicating sucess/failure
|
* @return Error code indicating success/failure
|
||||||
* @author syounan
|
* @author syounan
|
||||||
* @date 30 Aug 2010
|
* @date 30 Aug 2010
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
|
|
Loading…
Reference in New Issue