]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/scsi/scsi_host.h
[SCSI] srp_transport: add target driver support
[linux-2.6-omap-h63xx.git] / include / scsi / scsi_host.h
index 68f461b7a8355401330a42b35f52aba9393e10db..89c40c4bd5c481030ffc72a9705f125a484b38b9 100644 (file)
@@ -146,7 +146,7 @@ struct scsi_host_template {
                                  void (*done)(struct scsi_cmnd *));
 
        /* Used as callback for the completion of task management request. */
-       int (* tsk_mgmt_response)(u64 mid, int result);
+       int (* tsk_mgmt_response)(struct Scsi_Host *, u64, u64 mid, int result);
 
        /*
         * This is an error handling strategy routine.  You don't need to
@@ -338,16 +338,10 @@ struct scsi_host_template {
         */
        enum scsi_eh_timer_return (* eh_timed_out)(struct scsi_cmnd *);
 
-       /*
-        * suspend support
-        */
-       int (*resume)(struct scsi_device *);
-       int (*suspend)(struct scsi_device *, pm_message_t state);
-
        /*
         * Name of proc directory
         */
-       char *proc_name;
+       const char *proc_name;
 
        /*
         * Used to store the procfs directory if a driver implements the
@@ -677,6 +671,10 @@ struct Scsi_Host {
 #define shost_printk(prefix, shost, fmt, a...) \
        dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a)
 
+static inline void *shost_priv(struct Scsi_Host *shost)
+{
+       return (void *)shost->hostdata;
+}
 
 int scsi_is_host_device(const struct device *);