Re: [Outreachy kernel] [PATCH 5/5] staging: rtl8712: Remove unnecessary cast on void pointer

From: Julia Lawall
Date: Thu Mar 02 2017 - 17:02:31 EST


> @@ -635,7 +635,7 @@ void r8712_reordering_ctrl_timeout_handler(void *pcontext)
> {
> unsigned long irql;
> struct recv_reorder_ctrl *preorder_ctrl =
> - (struct recv_reorder_ctrl *)pcontext;
> + pcontext;

Coccinelle doesn't always generate code in the best way. pcontext can be
moved up to the previous line in this case.

julia