mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
[SCSI] pmcraid : Remove unnecessary casts for void * pointers
Signed-off-by: Cyril Jayaprakash <cyril.jayaprakash@gmail.com> Acked-by: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
4b6c83f578
commit
660bdddb52
@ -3599,8 +3599,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);
|
||||
@ -3619,7 +3618,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);
|
||||
@ -4110,7 +4109,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");
|
||||
|
Loading…
Reference in New Issue
Block a user