Fix build failure by adding UINT16 type cast.
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14259 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -1683,7 +1683,7 @@ DevPathFromTextSAS (
|
|||||||
} else if (StrCmp (LocationStr, L"Internal") == 0) {
|
} else if (StrCmp (LocationStr, L"Internal") == 0) {
|
||||||
Uint16 = 0;
|
Uint16 = 0;
|
||||||
} else {
|
} else {
|
||||||
Uint16 = (Strtoi (LocationStr) & BIT0);
|
Uint16 = ((UINT16) Strtoi (LocationStr) & BIT0);
|
||||||
}
|
}
|
||||||
Info |= (Uint16 << 5);
|
Info |= (Uint16 << 5);
|
||||||
|
|
||||||
@@ -1696,7 +1696,7 @@ DevPathFromTextSAS (
|
|||||||
} else if (StrCmp (ConnectStr, L"Direct") == 0) {
|
} else if (StrCmp (ConnectStr, L"Direct") == 0) {
|
||||||
Uint16 = 0;
|
Uint16 = 0;
|
||||||
} else {
|
} else {
|
||||||
Uint16 = (Strtoi (ConnectStr) & (BIT0 | BIT1));
|
Uint16 = ((UINT16) Strtoi (ConnectStr) & (BIT0 | BIT1));
|
||||||
}
|
}
|
||||||
Info |= (Uint16 << 6);
|
Info |= (Uint16 << 6);
|
||||||
|
|
||||||
@@ -1780,7 +1780,7 @@ DevPathFromTextSasEx (
|
|||||||
} else if (StrCmp (LocationStr, L"Internal") == 0) {
|
} else if (StrCmp (LocationStr, L"Internal") == 0) {
|
||||||
Uint16 = 0;
|
Uint16 = 0;
|
||||||
} else {
|
} else {
|
||||||
Uint16 = (Strtoi (LocationStr) & BIT0);
|
Uint16 = ((UINT16) Strtoi (LocationStr) & BIT0);
|
||||||
}
|
}
|
||||||
Info |= (Uint16 << 5);
|
Info |= (Uint16 << 5);
|
||||||
|
|
||||||
@@ -1793,7 +1793,7 @@ DevPathFromTextSasEx (
|
|||||||
} else if (StrCmp (ConnectStr, L"Direct") == 0) {
|
} else if (StrCmp (ConnectStr, L"Direct") == 0) {
|
||||||
Uint16 = 0;
|
Uint16 = 0;
|
||||||
} else {
|
} else {
|
||||||
Uint16 = (Strtoi (ConnectStr) & (BIT0 | BIT1));
|
Uint16 = ((UINT16) Strtoi (ConnectStr) & (BIT0 | BIT1));
|
||||||
}
|
}
|
||||||
Info |= (Uint16 << 6);
|
Info |= (Uint16 << 6);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user