staging: wilc1000: rename WILC_MsgQueueCreate to wilc_mq_create
This patch replaces WILC_MsgQueueCreate with wilc_mq_create to shorten function name and avoid CamelCase. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bd56018a87
commit
cd08fc7813
3 changed files with 3 additions and 3 deletions
|
|
@ -6532,7 +6532,7 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
|
|||
PRINT_D(HOSTINF_DBG, "INIT: CLIENT COUNT %d\n", clients_count);
|
||||
|
||||
if (clients_count == 0) {
|
||||
s32Error = WILC_MsgQueueCreate(&gMsgQHostIF);
|
||||
s32Error = wilc_mq_create(&gMsgQHostIF);
|
||||
|
||||
if (s32Error < 0) {
|
||||
PRINT_ER("Failed to creat MQ\n");
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
* @note copied from FLO glue implementatuion
|
||||
* @version 1.0
|
||||
*/
|
||||
int WILC_MsgQueueCreate(WILC_MsgQueueHandle *pHandle)
|
||||
int wilc_mq_create(WILC_MsgQueueHandle *pHandle)
|
||||
{
|
||||
spin_lock_init(&pHandle->strCriticalSection);
|
||||
sema_init(&pHandle->hSem, 0);
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
* @date 30 Aug 2010
|
||||
* @version 1.0
|
||||
*/
|
||||
int WILC_MsgQueueCreate(WILC_MsgQueueHandle *pHandle);
|
||||
int wilc_mq_create(WILC_MsgQueueHandle *pHandle);
|
||||
|
||||
/*!
|
||||
* @brief Sends a message
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue