mirror of https://github.com/acidanthera/audk.git
Fix building issue for Intel Compiler
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3695 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
bbc0f1bb24
commit
6bee163234
|
@ -1167,7 +1167,7 @@ IsaSerialSetAttributes (
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Parity == DefaultParity) {
|
if (Parity == DefaultParity) {
|
||||||
Parity = FixedPcdGet8 (PcdUartDefaultParity);
|
Parity = (EFI_PARITY_TYPE)FixedPcdGet8 (PcdUartDefaultParity);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DataBits == 0) {
|
if (DataBits == 0) {
|
||||||
|
|
|
@ -29,4 +29,4 @@ typedef struct {
|
||||||
#pragma pack()
|
#pragma pack()
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -875,4 +875,4 @@ CustomDecompressGetAlgorithms (
|
||||||
*NumberOfAlgorithms = 1;
|
*NumberOfAlgorithms = 1;
|
||||||
|
|
||||||
return RETURN_SUCCESS;
|
return RETURN_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -623,4 +623,4 @@ Returns:
|
||||||
VariableName,
|
VariableName,
|
||||||
VariableGuid
|
VariableGuid
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue