This patch renames pstrMessge to msg to avoid camelcase.
Signed-off-by: Chaehyun Lim <[email protected]>
---
drivers/staging/wilc1000/wilc_msgqueue.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/wilc1000/wilc_msgqueue.c
b/drivers/staging/wilc1000/wilc_msgqueue.c
index 103fcfd..a01420a 100644
--- a/drivers/staging/wilc1000/wilc_msgqueue.c
+++ b/drivers/staging/wilc1000/wilc_msgqueue.c
@@ -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;
--
2.6.4
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html