staging: wilc1000: rename pstrTailMsg in wilc_mq_send

This patch renames pstrTailMsg to tail_msg to 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:
Chaehyun Lim 2016-01-21 20:30:48 +09:00 committed by Greg Kroah-Hartman
parent 669fd5077f
commit bd07b0076b

View file

@ -88,12 +88,12 @@ int wilc_mq_send(struct message_queue *mq,
if (!mq->msg_list) {
mq->msg_list = new_msg;
} else {
struct message *pstrTailMsg = mq->msg_list;
struct message *tail_msg = mq->msg_list;
while (pstrTailMsg->next)
pstrTailMsg = pstrTailMsg->next;
while (tail_msg->next)
tail_msg = tail_msg->next;
pstrTailMsg->next = new_msg;
tail_msg->next = new_msg;
}
spin_unlock_irqrestore(&mq->lock, flags);