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

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

staging: wilc1000: rename pstrMessge in wilc_mq_destroy



This patch renames pstrMessge to 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 d742f67e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -38,10 +38,10 @@ int wilc_mq_destroy(struct message_queue *mq)
	}

	while (mq->msg_list) {
		struct message *pstrMessge = mq->msg_list->next;
		struct message *msg = mq->msg_list->next;

		kfree(mq->msg_list);
		mq->msg_list = pstrMessge;
		mq->msg_list = msg;
	}

	return 0;