mirror of https://gitee.com/openkylin/linux.git
staging: wilc1000: rename WILC_MsgQueueDestroy to wilc_mq_destroy
This patch replaces WILC_MsgQueueDestroy to wilc_mq_destroy 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
b986e33e1e
commit
1b128f632d
|
@ -6616,7 +6616,7 @@ s32 host_int_init(tstrWILC_WFIDrv **phWFIDrv)
|
|||
del_timer_sync(&pstrWFIDrv->hScanTimer);
|
||||
kthread_stop(HostIFthreadHandler);
|
||||
_fail_mq_:
|
||||
WILC_MsgQueueDestroy(&gMsgQHostIF);
|
||||
wilc_mq_destroy(&gMsgQHostIF);
|
||||
_fail_:
|
||||
return s32Error;
|
||||
|
||||
|
@ -6717,7 +6717,7 @@ s32 host_int_deinit(tstrWILC_WFIDrv *hWFIDrv)
|
|||
|
||||
down(&hSemHostIFthrdEnd);
|
||||
|
||||
WILC_MsgQueueDestroy(&gMsgQHostIF);
|
||||
wilc_mq_destroy(&gMsgQHostIF);
|
||||
msgQ_created = 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ int wilc_mq_create(WILC_MsgQueueHandle *pHandle)
|
|||
* @note copied from FLO glue implementatuion
|
||||
* @version 1.0
|
||||
*/
|
||||
int WILC_MsgQueueDestroy(WILC_MsgQueueHandle *pHandle)
|
||||
int wilc_mq_destroy(WILC_MsgQueueHandle *pHandle)
|
||||
{
|
||||
pHandle->bExiting = true;
|
||||
|
||||
|
|
|
@ -76,6 +76,6 @@ int wilc_mq_recv(WILC_MsgQueueHandle *pHandle,
|
|||
* @date 30 Aug 2010
|
||||
* @version 1.0
|
||||
*/
|
||||
int WILC_MsgQueueDestroy(WILC_MsgQueueHandle *pHandle);
|
||||
int wilc_mq_destroy(WILC_MsgQueueHandle *pHandle);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue