Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd07b007 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename pstrTailMsg in wilc_mq_send



This patch renames pstrTailMsg to tail_msg to avoid camelcase.

Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 669fd507
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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);