Bumped maximum UDMA mode from 2 (ATA 33) to 4 (ATA 66) so it can be used where supported.

This commit is contained in:
OBattler
2020-04-25 22:37:07 +02:00
parent 20cf306d44
commit e6ccbd2406
4 changed files with 4 additions and 4 deletions

View File

@@ -2243,7 +2243,7 @@ zip_get_max(int ide_has_dma, int type)
ret = ide_has_dma ? 1 : -1;
break;
case TYPE_UDMA:
ret = ide_has_dma ? 2 : -1;
ret = ide_has_dma ? 4 /*2*/ : -1;
break;
}