diff options
author | Tony Jones <tonyj@suse.de> | 2008-02-21 18:13:36 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-04-19 22:10:33 -0400 |
commit | ee959b00c335d7780136c5abda37809191fe52c3 (patch) | |
tree | 7775f3b274fd8caf5e7e5154fea89e96f2babd94 /include/scsi/scsi_host.h | |
parent | 56d110e852b0b1c85ad6c9bfe1cb4473ceb16402 (diff) |
SCSI: convert struct class_device to struct device
It's big, but there doesn't seem to be a way to split it up smaller...
Signed-off-by: Tony Jones <tonyj@suse.de>
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Cc: Roland Dreier <rolandd@cisco.com>
Cc: Sean Hefty <sean.hefty@intel.com>
Cc: Hal Rosenstock <hal.rosenstock@gmail.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/scsi/scsi_host.h')
-rw-r--r-- | include/scsi/scsi_host.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/scsi/scsi_host.h b/include/scsi/scsi_host.h index 49132862bfaa..d967d6dc7a28 100644 --- a/include/scsi/scsi_host.h +++ b/include/scsi/scsi_host.h | |||
@@ -470,7 +470,7 @@ struct scsi_host_template { | |||
470 | /* | 470 | /* |
471 | * Pointer to the sysfs class properties for this host, NULL terminated. | 471 | * Pointer to the sysfs class properties for this host, NULL terminated. |
472 | */ | 472 | */ |
473 | struct class_device_attribute **shost_attrs; | 473 | struct device_attribute **shost_attrs; |
474 | 474 | ||
475 | /* | 475 | /* |
476 | * Pointer to the SCSI device properties for this host, NULL terminated. | 476 | * Pointer to the SCSI device properties for this host, NULL terminated. |
@@ -655,8 +655,7 @@ struct Scsi_Host { | |||
655 | enum scsi_host_state shost_state; | 655 | enum scsi_host_state shost_state; |
656 | 656 | ||
657 | /* ldm bits */ | 657 | /* ldm bits */ |
658 | struct device shost_gendev; | 658 | struct device shost_gendev, shost_dev; |
659 | struct class_device shost_classdev; | ||
660 | 659 | ||
661 | /* | 660 | /* |
662 | * List of hosts per template. | 661 | * List of hosts per template. |
@@ -683,7 +682,7 @@ struct Scsi_Host { | |||
683 | }; | 682 | }; |
684 | 683 | ||
685 | #define class_to_shost(d) \ | 684 | #define class_to_shost(d) \ |
686 | container_of(d, struct Scsi_Host, shost_classdev) | 685 | container_of(d, struct Scsi_Host, shost_dev) |
687 | 686 | ||
688 | #define shost_printk(prefix, shost, fmt, a...) \ | 687 | #define shost_printk(prefix, shost, fmt, a...) \ |
689 | dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a) | 688 | dev_printk(prefix, &(shost)->shost_gendev, fmt, ##a) |