diff options
-rw-r--r-- | drivers/scsi/ahci.c | 2 | ||||
-rw-r--r-- | drivers/scsi/sata_uli.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/ahci.c b/drivers/scsi/ahci.c index 31065261de8e..320df6cd3def 100644 --- a/drivers/scsi/ahci.c +++ b/drivers/scsi/ahci.c | |||
@@ -250,7 +250,7 @@ static struct ata_port_info ahci_port_info[] = { | |||
250 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | | 250 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY | |
251 | ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO | | 251 | ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO | |
252 | ATA_FLAG_PIO_DMA, | 252 | ATA_FLAG_PIO_DMA, |
253 | .pio_mask = 0x03, /* pio3-4 */ | 253 | .pio_mask = 0x1f, /* pio0-4 */ |
254 | .udma_mask = 0x7f, /* udma0-6 ; FIXME */ | 254 | .udma_mask = 0x7f, /* udma0-6 ; FIXME */ |
255 | .port_ops = &ahci_ops, | 255 | .port_ops = &ahci_ops, |
256 | }, | 256 | }, |
diff --git a/drivers/scsi/sata_uli.c b/drivers/scsi/sata_uli.c index 1566886815fb..42e13ed8eb5b 100644 --- a/drivers/scsi/sata_uli.c +++ b/drivers/scsi/sata_uli.c | |||
@@ -125,8 +125,8 @@ static struct ata_port_info uli_port_info = { | |||
125 | .sht = &uli_sht, | 125 | .sht = &uli_sht, |
126 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_SATA_RESET | | 126 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_SATA_RESET | |
127 | ATA_FLAG_NO_LEGACY, | 127 | ATA_FLAG_NO_LEGACY, |
128 | .pio_mask = 0x03, //support pio mode 4 (FIXME) | 128 | .pio_mask = 0x1f, /* pio0-4 */ |
129 | .udma_mask = 0x7f, //support udma mode 6 | 129 | .udma_mask = 0x7f, /* udma0-6 */ |
130 | .port_ops = &uli_ops, | 130 | .port_ops = &uli_ops, |
131 | }; | 131 | }; |
132 | 132 | ||