[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <534D86AE.3090503@orange.fr>
Date: Tue, 15 Apr 2014 21:21:18 +0200
From: Pascal COMBES <pascom@...nge.fr>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
CC: devel@...verdev.osuosl.org,
Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@...el.com>,
Jarod Wilson <jarod@...sonet.com>,
Jingoo Han <jg1.han@...sung.com>,
Valentina Manea <valentina.manea.m@...il.com>,
linux-kernel@...r.kernel.org, Naren Sankar <nsankar@...adcom.com>,
Monam Agarwal <monamagarwal123@...il.com>,
Scott Davilla <davilla@....com>,
Amarjargal Gundjalam <amarjargal16@...il.com>,
Dan Carpenter <dan.carpenter@...cle.com>,
Robert Foss <dev@...ertfoss.se>
Subject: [PATCH v3 2/3] Staging: crystalhd: Removed cast in crystalhd_lnx.c
Removed useless (because automatic) cast from void * in crystalhd_lnx.c
Signed-off-by: Pascal COMBES <pascom@...nge.fr>
---
diff --git a/drivers/staging/crystalhd/crystalhd_lnx.c b/drivers/staging/crystalhd/crystalhd_lnx.c
index fd7f08a..0e432bc 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);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists