diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2007-08-28 22:15:59 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-10-21 07:47:18 -0400 |
commit | 647b3d0084158c47b1aea8f34d13cab9cd0a5b49 (patch) | |
tree | c36d61d8c85c4e0e6160153ab99a6e7568b44a70 /drivers/md/dm.c | |
parent | 1bddd9e6453ef1c7bc5b6f4ddbf7d31f4aee7a44 (diff) |
[PATCH] lose unused arguments in dm ioctl callbacks
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/md/dm.c')
-rw-r--r-- | drivers/md/dm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c index 327de03a5bdf..5f0f4c8bcd3e 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c | |||
@@ -345,7 +345,7 @@ static int dm_blk_ioctl(struct inode *inode, struct file *file, | |||
345 | } | 345 | } |
346 | 346 | ||
347 | if (tgt->type->ioctl) | 347 | if (tgt->type->ioctl) |
348 | r = tgt->type->ioctl(tgt, inode, file, cmd, arg); | 348 | r = tgt->type->ioctl(tgt, cmd, arg); |
349 | 349 | ||
350 | out: | 350 | out: |
351 | dm_table_put(map); | 351 | dm_table_put(map); |