aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2005-12-14 20:20:15 -0500
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2005-12-14 20:20:15 -0500
commit7b4df9ece9b4c4a754bd1f5603cdabff26b987e5 (patch)
treeab1655bb53ead71d6de97193c5cc2355df8bd5e5
parent517bd1d5eac739a7f398058a9524386667fff032 (diff)
[PATCH] ide: cleanup ide_driver_t
Remove unused fields: ioctl, ata[pi]_prebuilder. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r--include/linux/ide.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 613534b77054..7b6a6a58e465 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -980,10 +980,7 @@ typedef struct ide_driver_s {
980 int (*end_request)(ide_drive_t *, int, int); 980 int (*end_request)(ide_drive_t *, int, int);
981 ide_startstop_t (*error)(ide_drive_t *, struct request *rq, u8, u8); 981 ide_startstop_t (*error)(ide_drive_t *, struct request *rq, u8, u8);
982 ide_startstop_t (*abort)(ide_drive_t *, struct request *rq); 982 ide_startstop_t (*abort)(ide_drive_t *, struct request *rq);
983 int (*ioctl)(ide_drive_t *, struct inode *, struct file *, unsigned int, unsigned long);
984 ide_proc_entry_t *proc; 983 ide_proc_entry_t *proc;
985 void (*ata_prebuilder)(ide_drive_t *);
986 void (*atapi_prebuilder)(ide_drive_t *);
987 struct device_driver gen_driver; 984 struct device_driver gen_driver;
988} ide_driver_t; 985} ide_driver_t;
989 986