On Sat, 4 Sep 2010, Joe Perches wrote: > Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> > --- > drivers/scsi/aacraid/linit.c | 2 +- > drivers/scsi/sg.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c > index cad6f9a..aa40036 100644 > --- a/drivers/scsi/aacraid/linit.c > +++ b/drivers/scsi/aacraid/linit.c > @@ -770,7 +770,7 @@ static long aac_compat_cfg_ioctl(struct file *file, unsigned cmd, unsigned long > { > if (!capable(CAP_SYS_RAWIO)) > return -EPERM; > - return aac_compat_do_ioctl((struct aac_dev *)file->private_data, cmd, arg); > + return aac_compat_do_ioctl(file->private_data, cmd, arg); > } > #endif > > diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c > index 78d6163..6efa8dd 100644 > --- a/drivers/scsi/sg.c > +++ b/drivers/scsi/sg.c > @@ -210,7 +210,7 @@ static void sg_put_dev(Sg_device *sdp); > > static int sg_allow_access(struct file *filp, unsigned char *cmd) > { > - struct sg_fd *sfp = (struct sg_fd *)filp->private_data; > + struct sg_fd *sfp = filp->private_data; > > if (sfp->parentdp->device->type == TYPE_SCANNER) > return 0; This patch isn't present in linux-next as of today. Applying to my tree now. -- Jiri Kosina SUSE Labs, Novell Inc. -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html