MFp4:
Reduce code duplication.
This commit is contained in:
parent
bacfa53de3
commit
a3f00c8abf
@ -1055,23 +1055,22 @@ atacapprint(struct ata_params *parm)
|
|||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
||||||
printf("PIO supported PIO");
|
printf("PIO supported PIO");
|
||||||
if (parm->atavalid & ATA_FLAG_64_70) {
|
switch (ata_max_pmode(parm)) {
|
||||||
if (parm->apiomodes & 0x02)
|
case ATA_PIO4:
|
||||||
printf("4");
|
|
||||||
else if (parm->apiomodes & 0x01)
|
|
||||||
printf("3");
|
|
||||||
} else if (parm->mwdmamodes & 0x04)
|
|
||||||
printf("4");
|
printf("4");
|
||||||
else if (parm->mwdmamodes & 0x02)
|
break;
|
||||||
|
case ATA_PIO3:
|
||||||
printf("3");
|
printf("3");
|
||||||
else if (parm->mwdmamodes & 0x01)
|
break;
|
||||||
|
case ATA_PIO2:
|
||||||
printf("2");
|
printf("2");
|
||||||
else if ((parm->retired_piomode & ATA_RETIRED_PIO_MASK) == 0x200)
|
break;
|
||||||
printf("2");
|
case ATA_PIO1:
|
||||||
else if ((parm->retired_piomode & ATA_RETIRED_PIO_MASK) == 0x100)
|
|
||||||
printf("1");
|
printf("1");
|
||||||
else
|
break;
|
||||||
|
default:
|
||||||
printf("0");
|
printf("0");
|
||||||
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
||||||
printf("DMA%ssupported ",
|
printf("DMA%ssupported ",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user