diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-10-02 16:57:58 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-10-12 14:55:38 -0400 |
commit | 69916b7ceac0dfbbc868ae5451062cb789b1b58a (patch) | |
tree | 46e61af02e69cb039d4404c051690f15bec8c7b4 /drivers | |
parent | a52667f3cd84fa395e98b505967070b984fac4df (diff) |
[SCSI] gdth: Reorder scsi_host_template intitializers
shuffle scsi_host_template members such that they appear in the
order in which they are defined in the header. this makes is easier
to verify when initializers are missing members.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/gdth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c index afda12f5c1fb..dba27b3b979a 100644 --- a/drivers/scsi/gdth.c +++ b/drivers/scsi/gdth.c | |||
@@ -4907,17 +4907,17 @@ static int gdth_slave_configure(struct scsi_device *sdev) | |||
4907 | } | 4907 | } |
4908 | 4908 | ||
4909 | static struct scsi_host_template driver_template = { | 4909 | static struct scsi_host_template driver_template = { |
4910 | .proc_name = "gdth", | ||
4911 | .proc_info = gdth_proc_info, | ||
4912 | .name = "GDT SCSI Disk Array Controller", | 4910 | .name = "GDT SCSI Disk Array Controller", |
4913 | .detect = gdth_detect, | 4911 | .detect = gdth_detect, |
4914 | .release = gdth_release, | 4912 | .release = gdth_release, |
4915 | .info = gdth_info, | 4913 | .info = gdth_info, |
4916 | .queuecommand = gdth_queuecommand, | 4914 | .queuecommand = gdth_queuecommand, |
4917 | .eh_bus_reset_handler = gdth_eh_bus_reset, | 4915 | .eh_bus_reset_handler = gdth_eh_bus_reset, |
4916 | .slave_configure = gdth_slave_configure, | ||
4918 | .bios_param = gdth_bios_param, | 4917 | .bios_param = gdth_bios_param, |
4918 | .proc_info = gdth_proc_info, | ||
4919 | .proc_name = "gdth", | ||
4919 | .can_queue = GDTH_MAXCMDS, | 4920 | .can_queue = GDTH_MAXCMDS, |
4920 | .slave_configure = gdth_slave_configure, | ||
4921 | .this_id = -1, | 4921 | .this_id = -1, |
4922 | .sg_tablesize = GDTH_MAXSG, | 4922 | .sg_tablesize = GDTH_MAXSG, |
4923 | .cmd_per_lun = GDTH_MAXC_P_L, | 4923 | .cmd_per_lun = GDTH_MAXC_P_L, |