[PATCH] lose the unused file argument in generic_ide_ioctl()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2008-09-02 17:19:43 -04:00
parent 74f3c8aff3
commit 1bddd9e645
7 changed files with 7 additions and 9 deletions

View File

@@ -23,5 +23,5 @@ int ide_disk_ioctl(ide_drive_t *drive, struct inode *inode, struct file *file,
if (err != -EOPNOTSUPP)
return err;
return generic_ide_ioctl(drive, file, bdev, cmd, arg);
return generic_ide_ioctl(drive, bdev, cmd, arg);
}