aboutsummaryrefslogtreecommitdiffstats
path: root/include/scsi/scsi_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/scsi/scsi_host.h')
-rw-r--r--include/scsi/scsi_host.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/scsi/scsi_host.h b/include/scsi/scsi_host.h
index 68f461b7a835..ba07cf7c04ba 100644
--- a/include/scsi/scsi_host.h
+++ b/include/scsi/scsi_host.h
@@ -339,12 +339,6 @@ struct scsi_host_template {
339 enum scsi_eh_timer_return (* eh_timed_out)(struct scsi_cmnd *); 339 enum scsi_eh_timer_return (* eh_timed_out)(struct scsi_cmnd *);
340 340
341 /* 341 /*
342 * suspend support
343 */
344 int (*resume)(struct scsi_device *);
345 int (*suspend)(struct scsi_device *, pm_message_t state);
346
347 /*
348 * Name of proc directory 342 * Name of proc directory
349 */ 343 */
350 char *proc_name; 344 char *proc_name;
@@ -677,6 +671,10 @@ struct Scsi_Host {
677#define shost_printk(prefix, shost, fmt, a...) \ 671#define shost_printk(prefix, shost, fmt, a...) \
678 dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a) 672 dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a)
679 673
674static inline void *shost_priv(struct Scsi_Host *shost)
675{
676 return (void *)shost->hostdata;
677}
680 678
681int scsi_is_host_device(const struct device *); 679int scsi_is_host_device(const struct device *);
682 680