From: Anil Ravindranath on 23 Jul 2010 22:20 Signed-off-by: Anil Ravindranath <anil_ravindranath(a)pmc-sierra.com> On Mon, 12 Jul 2010, Cyril Jayaprakash wrote: > From: Cyril Jayaprakash <cyril.jayaprakash(a)gmail.com> > > Patch to remove unwanted cast for void * pointers. > > Signed-off-by: Cyril Jayaprakash <cyril.jayaprakash(a)gmail.com> > --- > drivers/scsi/pmcraid.c | 7 +++---- > 1 files changed, 3 insertions(+), 4 deletions(-) > > diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c > index c44e4ab..bd0b5a0 100644 > --- a/drivers/scsi/pmcraid.c > +++ b/drivers/scsi/pmcraid.c > @@ -3324,8 +3324,7 @@ static int pmcraid_chr_open(struct inode *inode, struct file *filep) > */ > static int pmcraid_chr_release(struct inode *inode, struct file *filep) > { > - struct pmcraid_instance *pinstance = > - ((struct pmcraid_instance *)filep->private_data); > + struct pmcraid_instance *pinstance = filep->private_data; > > filep->private_data = NULL; > fasync_helper(-1, filep, 0, &pinstance->aen_queue); > @@ -3344,7 +3343,7 @@ static int pmcraid_chr_fasync(int fd, struct file *filep, int mode) > struct pmcraid_instance *pinstance; > int rc; > > - pinstance = (struct pmcraid_instance *)filep->private_data; > + pinstance = filep->private_data; > mutex_lock(&pinstance->aen_queue_lock); > rc = fasync_helper(fd, filep, mode, &pinstance->aen_queue); > mutex_unlock(&pinstance->aen_queue_lock); > @@ -3795,7 +3794,7 @@ static long pmcraid_chr_ioctl( > return retval; > } > > - pinstance = (struct pmcraid_instance *)filep->private_data; > + pinstance = filep->private_data; > > if (!pinstance) { > pmcraid_info("adapter instance is not found\n"); > -- > 1.7.0.4 > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: wheel E-game 2010 Next: ARM: kirkwood: move qnap_tsx1x_register_flash() to .init.text |