Skip to content

Commit 6b05fcc

Browse files
standby24x7gregkh
authored andcommitted
staging: wilc1000: Fix typo in wilc_msgqueue.h
This patch fix some spelling typo in wilc_msgqueue.h Signed-off-by: Masanari Iida <[email protected]> Acked-by: Randy Dunlap <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent f6e0e2a commit 6b05fcc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

drivers/staging/wilc1000/wilc_msgqueue.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ typedef struct __MessageQueue_struct {
3535
* any other message queue having the same name in the system
3636
* @param[in,out] pHandle handle to the message queue object
3737
* @param[in] pstrAttrs Optional attributes, NULL for default
38-
* @return Error code indicating sucess/failure
38+
* @return Error code indicating success/failure
3939
* @author syounan
4040
* @date 30 Aug 2010
4141
* @version 1.0
@@ -44,15 +44,15 @@ int wilc_mq_create(WILC_MsgQueueHandle *pHandle);
4444

4545
/*!
4646
* @brief Sends a message
47-
* @details Sends a message, this API will block unil the message is
47+
* @details Sends a message, this API will block until the message is
4848
* actually sent or until it is timedout (as long as the feature
4949
* CONFIG_WILC_MSG_QUEUE_TIMEOUT is enabled and pstrAttrs->u32Timeout
5050
* is not set to WILC_OS_INFINITY), zero timeout is a valid value
5151
* @param[in] pHandle handle to the message queue object
5252
* @param[in] pvSendBuffer pointer to the data to send
5353
* @param[in] u32SendBufferSize the size of the data to send
5454
* @param[in] pstrAttrs Optional attributes, NULL for default
55-
* @return Error code indicating sucess/failure
55+
* @return Error code indicating success/failure
5656
* @author syounan
5757
* @date 30 Aug 2010
5858
* @version 1.0
@@ -62,7 +62,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
6262

6363
/*!
6464
* @brief Receives a message
65-
* @details Receives a message, this API will block unil a message is
65+
* @details Receives a message, this API will block until a message is
6666
* received or until it is timedout (as long as the feature
6767
* CONFIG_WILC_MSG_QUEUE_TIMEOUT is enabled and pstrAttrs->u32Timeout
6868
* is not set to WILC_OS_INFINITY), zero timeout is a valid value
@@ -71,7 +71,7 @@ int wilc_mq_send(WILC_MsgQueueHandle *pHandle,
7171
* @param[in] u32RecvBufferSize the size of the receive buffer
7272
* @param[out] pu32ReceivedLength the length of received data
7373
* @param[in] pstrAttrs Optional attributes, NULL for default
74-
* @return Error code indicating sucess/failure
74+
* @return Error code indicating success/failure
7575
* @author syounan
7676
* @date 30 Aug 2010
7777
* @version 1.0
@@ -84,7 +84,7 @@ int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
8484
* @brief Destroys an existing Message queue
8585
* @param[in] pHandle handle to the message queue object
8686
* @param[in] pstrAttrs Optional attributes, NULL for default
87-
* @return Error code indicating sucess/failure
87+
* @return Error code indicating success/failure
8888
* @author syounan
8989
* @date 30 Aug 2010
9090
* @version 1.0

0 commit comments

Comments
 (0)