diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-05-26 18:20:51 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-07-09 12:17:32 -0400 |
commit | 49de0ac823ed7826695c6a2ac62dc1f730a8b17d (patch) | |
tree | 9874156f91490ebeb2337785aa65e43506e53aee /drivers/ata | |
parent | 59f998802bd5df56cd824f313cf5b0c3e356ec59 (diff) |
[libata] pdc_adma: Reorder initializers with a couple structs
Make it easier to verify which struct initializers are present, by
presenting them in the order in which they are defined in the API
header.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/pdc_adma.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/ata/pdc_adma.c b/drivers/ata/pdc_adma.c index f12c2b6ac08e..74c50c90e4d0 100644 --- a/drivers/ata/pdc_adma.c +++ b/drivers/ata/pdc_adma.c | |||
@@ -145,32 +145,32 @@ static struct scsi_host_template adma_ata_sht = { | |||
145 | .name = DRV_NAME, | 145 | .name = DRV_NAME, |
146 | .ioctl = ata_scsi_ioctl, | 146 | .ioctl = ata_scsi_ioctl, |
147 | .queuecommand = ata_scsi_queuecmd, | 147 | .queuecommand = ata_scsi_queuecmd, |
148 | .slave_configure = ata_scsi_slave_config, | ||
149 | .slave_destroy = ata_scsi_slave_destroy, | ||
150 | .bios_param = ata_std_bios_param, | ||
151 | .proc_name = DRV_NAME, | ||
148 | .can_queue = ATA_DEF_QUEUE, | 152 | .can_queue = ATA_DEF_QUEUE, |
149 | .this_id = ATA_SHT_THIS_ID, | 153 | .this_id = ATA_SHT_THIS_ID, |
150 | .sg_tablesize = LIBATA_MAX_PRD, | 154 | .sg_tablesize = LIBATA_MAX_PRD, |
155 | .dma_boundary = ADMA_DMA_BOUNDARY, | ||
151 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, | 156 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, |
152 | .emulated = ATA_SHT_EMULATED, | ||
153 | .use_clustering = ENABLE_CLUSTERING, | 157 | .use_clustering = ENABLE_CLUSTERING, |
154 | .proc_name = DRV_NAME, | 158 | .emulated = ATA_SHT_EMULATED, |
155 | .dma_boundary = ADMA_DMA_BOUNDARY, | ||
156 | .slave_configure = ata_scsi_slave_config, | ||
157 | .slave_destroy = ata_scsi_slave_destroy, | ||
158 | .bios_param = ata_std_bios_param, | ||
159 | }; | 159 | }; |
160 | 160 | ||
161 | static const struct ata_port_operations adma_ata_ops = { | 161 | static const struct ata_port_operations adma_ata_ops = { |
162 | .port_disable = ata_port_disable, | 162 | .port_disable = ata_port_disable, |
163 | .tf_load = ata_tf_load, | 163 | .tf_load = ata_tf_load, |
164 | .tf_read = ata_tf_read, | 164 | .tf_read = ata_tf_read, |
165 | .check_status = ata_check_status, | ||
166 | .check_atapi_dma = adma_check_atapi_dma, | ||
167 | .exec_command = ata_exec_command, | 165 | .exec_command = ata_exec_command, |
166 | .check_status = ata_check_status, | ||
168 | .dev_select = ata_std_dev_select, | 167 | .dev_select = ata_std_dev_select, |
169 | .phy_reset = adma_phy_reset, | 168 | .phy_reset = adma_phy_reset, |
169 | .check_atapi_dma = adma_check_atapi_dma, | ||
170 | .data_xfer = ata_data_xfer, | ||
170 | .qc_prep = adma_qc_prep, | 171 | .qc_prep = adma_qc_prep, |
171 | .qc_issue = adma_qc_issue, | 172 | .qc_issue = adma_qc_issue, |
172 | .eng_timeout = adma_eng_timeout, | 173 | .eng_timeout = adma_eng_timeout, |
173 | .data_xfer = ata_data_xfer, | ||
174 | .irq_clear = adma_irq_clear, | 174 | .irq_clear = adma_irq_clear, |
175 | .irq_on = ata_irq_on, | 175 | .irq_on = ata_irq_on, |
176 | .irq_ack = ata_irq_ack, | 176 | .irq_ack = ata_irq_ack, |