AMD SATA: Correct »them implement« to »then implement« in comments
The following command was used to correct all occurences of this typo. $ git grep -l "them implem" | xargs sed -i 's/them implem/then implem/' Change-Id: Iebd4635867d67861aaf4d4d64ca8a67e87833f38 Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-on: http://review.coreboot.org/3145 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
ac22227370
commit
008616247d
|
@ -68,7 +68,7 @@ FchInitMidSataIde2Ahci (
|
|||
|
||||
SataBar5setting (LocalCfgPtr, &Bar5);
|
||||
//
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, them implement drive detection workaround.
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, then implement drive detection workaround.
|
||||
//
|
||||
if ( ! (LocalCfgPtr->Misc.S3Resume) ) {
|
||||
SataDriveDetection (LocalCfgPtr, &Bar5);
|
||||
|
|
|
@ -67,7 +67,7 @@ FchInitMidSataIde (
|
|||
Bar5 = 0;
|
||||
SataBar5setting (LocalCfgPtr, &Bar5);
|
||||
//
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, them implement drive detection workaround.
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, then implement drive detection workaround.
|
||||
//
|
||||
if ( ! (LocalCfgPtr->Misc.S3Resume) ) {
|
||||
SataDriveDetection (LocalCfgPtr, &Bar5);
|
||||
|
|
|
@ -95,7 +95,7 @@ FchInitMidSataIde2Ahci (
|
|||
|
||||
SataBar5setting (LocalCfgPtr, &Bar5);
|
||||
//
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, them implement drive detection workaround.
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, then implement drive detection workaround.
|
||||
//
|
||||
if ( ! (LocalCfgPtr->Misc.S3Resume) ) {
|
||||
SataDriveDetection (LocalCfgPtr, &Bar5);
|
||||
|
|
|
@ -94,7 +94,7 @@ FchInitMidSataIde (
|
|||
Bar5 = 0;
|
||||
SataBar5setting (LocalCfgPtr, &Bar5);
|
||||
//
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, them implement drive detection workaround.
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, then implement drive detection workaround.
|
||||
//
|
||||
if ( ! (LocalCfgPtr->Misc.S3Resume) ) {
|
||||
SataDriveDetection (LocalCfgPtr, &Bar5);
|
||||
|
|
|
@ -544,7 +544,7 @@ sataInitMidPost (
|
|||
{
|
||||
UINT32 ddBar5;
|
||||
sataBar5setting (pConfig, &ddBar5);
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, them implement drive detection workaround.
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, then implement drive detection workaround.
|
||||
if ( ! (pConfig->S3Resume) && ( ((pConfig->SataClass) != AHCI_MODE) && ((pConfig->SataClass) != RAID_MODE) ) ) {
|
||||
sataDriveDetection (pConfig, &ddBar5);
|
||||
}
|
||||
|
|
|
@ -852,7 +852,7 @@ sataInitMidPost (
|
|||
{
|
||||
UINT32 ddBar5;
|
||||
sataBar5setting (pConfig, &ddBar5);
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, them implement drive detection workaround.
|
||||
//If this is not S3 resume and also if SATA set to one of IDE mode, then implement drive detection workaround.
|
||||
if ( ! (pConfig->S3Resume) && ( ((pConfig->SataClass) != AHCI_MODE) && ((pConfig->SataClass) != RAID_MODE) ) ) {
|
||||
sataDriveDetection (pConfig, &ddBar5);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue