diff options
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/scsi_driver.h | 9 | ||||
-rw-r--r-- | include/scsi/sd.h | 1 |
2 files changed, 8 insertions, 2 deletions
diff --git a/include/scsi/scsi_driver.h b/include/scsi/scsi_driver.h index 3465f31a21c4..56a304709fde 100644 --- a/include/scsi/scsi_driver.h +++ b/include/scsi/scsi_driver.h | |||
@@ -5,13 +5,15 @@ | |||
5 | 5 | ||
6 | struct module; | 6 | struct module; |
7 | struct scsi_cmnd; | 7 | struct scsi_cmnd; |
8 | struct scsi_device; | ||
9 | struct request; | ||
10 | struct request_queue; | ||
8 | 11 | ||
9 | 12 | ||
10 | struct scsi_driver { | 13 | struct scsi_driver { |
11 | struct module *owner; | 14 | struct module *owner; |
12 | struct device_driver gendrv; | 15 | struct device_driver gendrv; |
13 | 16 | ||
14 | int (*init_command)(struct scsi_cmnd *); | ||
15 | void (*rescan)(struct device *); | 17 | void (*rescan)(struct device *); |
16 | }; | 18 | }; |
17 | #define to_scsi_driver(drv) \ | 19 | #define to_scsi_driver(drv) \ |
@@ -25,4 +27,9 @@ extern int scsi_register_interface(struct class_interface *); | |||
25 | #define scsi_unregister_interface(intf) \ | 27 | #define scsi_unregister_interface(intf) \ |
26 | class_interface_unregister(intf) | 28 | class_interface_unregister(intf) |
27 | 29 | ||
30 | int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req); | ||
31 | int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req); | ||
32 | int scsi_prep_state_check(struct scsi_device *sdev, struct request *req); | ||
33 | int scsi_prep_return(struct request_queue *q, struct request *req, int ret); | ||
34 | |||
28 | #endif /* _SCSI_SCSI_DRIVER_H */ | 35 | #endif /* _SCSI_SCSI_DRIVER_H */ |
diff --git a/include/scsi/sd.h b/include/scsi/sd.h index ce02ad1f5185..aa1e71613010 100644 --- a/include/scsi/sd.h +++ b/include/scsi/sd.h | |||
@@ -55,7 +55,6 @@ static void sd_shutdown(struct device *dev); | |||
55 | static int sd_suspend(struct device *dev, pm_message_t state); | 55 | static int sd_suspend(struct device *dev, pm_message_t state); |
56 | static int sd_resume(struct device *dev); | 56 | static int sd_resume(struct device *dev); |
57 | static void sd_rescan(struct device *); | 57 | static void sd_rescan(struct device *); |
58 | static int sd_init_command(struct scsi_cmnd *); | ||
59 | static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer); | 58 | static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer); |
60 | static void scsi_disk_release(struct class_device *cdev); | 59 | static void scsi_disk_release(struct class_device *cdev); |
61 | static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *); | 60 | static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *); |