diff options
author | Borislav Petkov <petkovbb@gmail.com> | 2009-05-01 23:27:11 +0200 |
---|---|---|
committer | Borislav Petkov <petkovbb@gmail.com> | 2009-05-15 06:44:06 +0200 |
commit | 5a0e43b5e2ee9a295f864c38f0e853b1a4fc3892 (patch) | |
tree | 9793191360addddb7d240e34d983817fde3ec621 /include/linux/ide.h | |
parent | 077e6dba20e74a455a0452379d2a965c7e1b01ad (diff) | |
download | linux-3.10-5a0e43b5e2ee9a295f864c38f0e853b1a4fc3892.tar.gz linux-3.10-5a0e43b5e2ee9a295f864c38f0e853b1a4fc3892.tar.bz2 linux-3.10-5a0e43b5e2ee9a295f864c38f0e853b1a4fc3892.zip |
ide-atapi: add a len-parameter to ide_queue_pc_tail
This is in preparation for removing ide_atapi_pc.
There should be no functional change resulting from this patch.
Signed-off-by: Borislav Petkov <petkovbb@gmail.com>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r-- | include/linux/ide.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 745a393af27..7e15bd1eaae 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h @@ -1160,7 +1160,8 @@ enum { REQ_IDETAPE_WRITE = (1 << 3), }; -int ide_queue_pc_tail(ide_drive_t *, struct gendisk *, struct ide_atapi_pc *); +int ide_queue_pc_tail(ide_drive_t *, struct gendisk *, struct ide_atapi_pc *, + unsigned int); int ide_do_test_unit_ready(ide_drive_t *, struct gendisk *); int ide_do_start_stop(ide_drive_t *, struct gendisk *, int); |