diff options
-rw-r--r-- | include/scsi/scsi_host.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/scsi/scsi_host.h b/include/scsi/scsi_host.h index 4a2e490abfed..ba07cf7c04ba 100644 --- a/include/scsi/scsi_host.h +++ b/include/scsi/scsi_host.h | |||
@@ -671,6 +671,10 @@ struct Scsi_Host { | |||
671 | #define shost_printk(prefix, shost, fmt, a...) \ | 671 | #define shost_printk(prefix, shost, fmt, a...) \ |
672 | dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a) | 672 | dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a) |
673 | 673 | ||
674 | static inline void *shost_priv(struct Scsi_Host *shost) | ||
675 | { | ||
676 | return (void *)shost->hostdata; | ||
677 | } | ||
674 | 678 | ||
675 | int scsi_is_host_device(const struct device *); | 679 | int scsi_is_host_device(const struct device *); |
676 | 680 | ||