diff options
Diffstat (limited to 'drivers/scsi/sata_uli.c')
-rw-r--r-- | drivers/scsi/sata_uli.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/scsi/sata_uli.c b/drivers/scsi/sata_uli.c index e69ba229adca..f668c997e9af 100644 --- a/drivers/scsi/sata_uli.c +++ b/drivers/scsi/sata_uli.c | |||
@@ -103,8 +103,6 @@ static const struct ata_port_operations uli_ops = { | |||
103 | .exec_command = ata_exec_command, | 103 | .exec_command = ata_exec_command, |
104 | .dev_select = ata_std_dev_select, | 104 | .dev_select = ata_std_dev_select, |
105 | 105 | ||
106 | .phy_reset = sata_phy_reset, | ||
107 | |||
108 | .bmdma_setup = ata_bmdma_setup, | 106 | .bmdma_setup = ata_bmdma_setup, |
109 | .bmdma_start = ata_bmdma_start, | 107 | .bmdma_start = ata_bmdma_start, |
110 | .bmdma_stop = ata_bmdma_stop, | 108 | .bmdma_stop = ata_bmdma_stop, |
@@ -113,7 +111,10 @@ static const struct ata_port_operations uli_ops = { | |||
113 | .qc_issue = ata_qc_issue_prot, | 111 | .qc_issue = ata_qc_issue_prot, |
114 | .data_xfer = ata_pio_data_xfer, | 112 | .data_xfer = ata_pio_data_xfer, |
115 | 113 | ||
116 | .eng_timeout = ata_eng_timeout, | 114 | .freeze = ata_bmdma_freeze, |
115 | .thaw = ata_bmdma_thaw, | ||
116 | .error_handler = ata_bmdma_error_handler, | ||
117 | .post_internal_cmd = ata_bmdma_post_internal_cmd, | ||
117 | 118 | ||
118 | .irq_handler = ata_interrupt, | 119 | .irq_handler = ata_interrupt, |
119 | .irq_clear = ata_bmdma_irq_clear, | 120 | .irq_clear = ata_bmdma_irq_clear, |
@@ -128,8 +129,7 @@ static const struct ata_port_operations uli_ops = { | |||
128 | 129 | ||
129 | static struct ata_port_info uli_port_info = { | 130 | static struct ata_port_info uli_port_info = { |
130 | .sht = &uli_sht, | 131 | .sht = &uli_sht, |
131 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_SATA_RESET | | 132 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY, |
132 | ATA_FLAG_NO_LEGACY, | ||
133 | .pio_mask = 0x1f, /* pio0-4 */ | 133 | .pio_mask = 0x1f, /* pio0-4 */ |
134 | .udma_mask = 0x7f, /* udma0-6 */ | 134 | .udma_mask = 0x7f, /* udma0-6 */ |
135 | .port_ops = &uli_ops, | 135 | .port_ops = &uli_ops, |