diff options
Diffstat (limited to 'include/scsi/scsi_driver.h')
-rw-r--r-- | include/scsi/scsi_driver.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/scsi/scsi_driver.h b/include/scsi/scsi_driver.h index 3465f31a21c4..1f5ca7f62116 100644 --- a/include/scsi/scsi_driver.h +++ b/include/scsi/scsi_driver.h | |||
@@ -5,14 +5,17 @@ | |||
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 *); |
18 | int (*done)(struct scsi_cmnd *); | ||
16 | }; | 19 | }; |
17 | #define to_scsi_driver(drv) \ | 20 | #define to_scsi_driver(drv) \ |
18 | container_of((drv), struct scsi_driver, gendrv) | 21 | container_of((drv), struct scsi_driver, gendrv) |
@@ -25,4 +28,9 @@ extern int scsi_register_interface(struct class_interface *); | |||
25 | #define scsi_unregister_interface(intf) \ | 28 | #define scsi_unregister_interface(intf) \ |
26 | class_interface_unregister(intf) | 29 | class_interface_unregister(intf) |
27 | 30 | ||
31 | int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req); | ||
32 | int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req); | ||
33 | int scsi_prep_state_check(struct scsi_device *sdev, struct request *req); | ||
34 | int scsi_prep_return(struct request_queue *q, struct request *req, int ret); | ||
35 | |||
28 | #endif /* _SCSI_SCSI_DRIVER_H */ | 36 | #endif /* _SCSI_SCSI_DRIVER_H */ |