From: Pascal COMBES Date: Tue, 15 Apr 2014 19:21:18 +0000 (+0200) Subject: Staging: crystalhd: Removed cast in crystalhd_lnx.c X-Git-Tag: omap-for-v3.16/fixes-against-rc1~39^2~36^2~1360 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9744f06bf2ecfa34ec2a1575b32d06723934c653;p=pandora-kernel.git Staging: crystalhd: Removed cast in crystalhd_lnx.c Removed useless (because automatic) cast from void * in crystalhd_lnx.c Signed-off-by: Pascal COMBES Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/crystalhd/crystalhd_lnx.c b/drivers/staging/crystalhd/crystalhd_lnx.c index fd7f08abbbdf..0e432bcf7c13 100644 --- a/drivers/staging/crystalhd/crystalhd_lnx.c +++ b/drivers/staging/crystalhd/crystalhd_lnx.c @@ -28,7 +28,7 @@ static struct crystalhd_adp *g_adp_info; static irqreturn_t chd_dec_isr(int irq, void *arg) { - struct crystalhd_adp *adp = (struct crystalhd_adp *) arg; + struct crystalhd_adp *adp = arg; int rc = 0; if (adp) rc = crystalhd_cmd_interrupt(&adp->cmds);