From: Janani Ravichandran Date: Thu, 25 Feb 2016 19:56:33 +0000 (-0500) Subject: staging: rtl8192e: Drop cast on void pointer X-Git-Tag: v4.6-rc1~103^2~212 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=314e4be76e20f1d799ee386380623375b0555372;p=karo-tx-linux.git staging: rtl8192e: Drop cast on void pointer Void pointers need not be cast to other pointer types. Semantic patch used: @r@ expression x; void *e; type T; identifier f; @@ ( *((T *)e) | ((T *)x) [...] | ((T *)x)->f | - (T *) e ) Signed-off-by: Janani Ravichandran Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c index bb6b62f1a260..9b7cc7dc7cb8 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -2401,7 +2401,7 @@ out: static irqreturn_t _rtl92e_irq(int irq, void *netdev) { - struct net_device *dev = (struct net_device *) netdev; + struct net_device *dev = netdev; struct r8192_priv *priv = rtllib_priv(dev); unsigned long flags; u32 inta;