diff options
| author | Alexander Viro <viro@math.psu.edu> | 2002-10-28 02:51:19 -0800 |
|---|---|---|
| committer | James Bottomley <jejb@mulgrave.(none)> | 2002-10-28 02:51:19 -0800 |
| commit | adf283f23455b8c08810921042abd6342f55d1ea (patch) | |
| tree | 6cc0a7f40e2e381632f69d5e64bfe2b1785052bc /include | |
| parent | f3da61af8e5779a644a3c5c8828ef3727053f6c6 (diff) | |
[PATCH] ide-{disk,cd,...} got separate block_device_operations
* first application of the fact that block device methods are
per-disk and not per-major - IDE subdrivers got block_device_operations
of their own, redirects in ide.c are gone, so is a bunch of methods of
IDE subdrivers.
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/ide.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index ea65cdfb6f7f..14852217fe14 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h @@ -1189,10 +1189,6 @@ typedef struct ide_driver_s { u8 (*sense)(ide_drive_t *, const char *, u8); ide_startstop_t (*error)(ide_drive_t *, const char *, u8); int (*ioctl)(ide_drive_t *, struct inode *, struct file *, unsigned int, unsigned long); - int (*open)(struct inode *, struct file *, ide_drive_t *); - void (*release)(struct inode *, struct file *, ide_drive_t *); - int (*media_change)(ide_drive_t *); - void (*revalidate)(ide_drive_t *); void (*pre_reset)(ide_drive_t *); unsigned long (*capacity)(ide_drive_t *); ide_startstop_t (*special)(ide_drive_t *); @@ -1324,8 +1320,6 @@ extern int ide_xlate_1024(struct block_device *, int, int, const char *); */ extern unsigned long current_capacity (ide_drive_t *drive); -extern void ide_revalidate_drive (ide_drive_t *drive); - /* * Start a reset operation for an IDE interface. * The caller should return immediately after invoking this. |
