diff options
| author | Martin Dalecki <dalecki@evision-ventures.com> | 2002-04-13 21:18:50 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-04-13 21:18:50 -0700 |
| commit | 3e11aea03aa1bde41aa841f1dbdb35f9a266311a (patch) | |
| tree | 2ae374c95616eeb4f8337fa2b29698233eee0420 /include | |
| parent | 6a0b3e79799ad7845f56db07ac788be5ecf38d7a (diff) | |
[PATCH] 2.5.8-pre3 IDE 33
- Kill unneded parameters to ide_cmd_ioctl() and ide_task_ioctl().
- Apply Petr Vendrovecs fix for 32bit ver 16bit transfers.
- Make CD-ROM usable again by guarding the generic routines against request
field abuse found there. We will try to convert this driver to the just to be
finished struct ata_request after the generic changes stabilize a bit.
The strcut ata_taskfile and struct ata_request merge to be more preciese.
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/ide.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 1c4783c1f00b..42eae55d34ae 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h @@ -864,10 +864,10 @@ extern ide_startstop_t task_no_data_intr(ide_drive_t *drive); extern void ide_cmd_type_parser(struct ata_taskfile *args); extern int ide_raw_taskfile(ide_drive_t *drive, struct ata_taskfile *cmd, byte *buf); -extern int ide_cmd_ioctl(ide_drive_t *drive, struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg); -extern int ide_task_ioctl(ide_drive_t *drive, struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg); +extern int ide_cmd_ioctl(ide_drive_t *drive, unsigned long arg); +extern int ide_task_ioctl(ide_drive_t *drive, unsigned long arg); -void ide_delay_50ms (void); +void ide_delay_50ms(void); byte ide_auto_reduce_xfer (ide_drive_t *drive); int ide_driveid_update (ide_drive_t *drive); |
