mirror of https://github.com/acidanthera/audk.git
ShellPkg add size cast to bit operations
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Eric Dong <eric.dong@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15804 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
83d1ffb92f
commit
e8a57ade2a
|
@ -1378,7 +1378,7 @@ PciGetClassStrings (
|
||||||
Print strings that represent PCI device class, subclass and programmed I/F.
|
Print strings that represent PCI device class, subclass and programmed I/F.
|
||||||
|
|
||||||
@param[in] ClassCodePtr Points to the memory which stores register Class Code in PCI
|
@param[in] ClassCodePtr Points to the memory which stores register Class Code in PCI
|
||||||
configuation space.
|
configuration space.
|
||||||
@param[in] IncludePIF If the printed string should include the programming I/F part
|
@param[in] IncludePIF If the printed string should include the programming I/F part
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
|
@ -1391,9 +1391,9 @@ PciPrintClassCode (
|
||||||
PCI_CLASS_STRINGS ClassStrings;
|
PCI_CLASS_STRINGS ClassStrings;
|
||||||
|
|
||||||
ClassCode = 0;
|
ClassCode = 0;
|
||||||
ClassCode |= ClassCodePtr[0];
|
ClassCode |= (UINT32)ClassCodePtr[0];
|
||||||
ClassCode |= (ClassCodePtr[1] << 8);
|
ClassCode |= (UINT32)(ClassCodePtr[1] << 8);
|
||||||
ClassCode |= (ClassCodePtr[2] << 16);
|
ClassCode |= (UINT32)(ClassCodePtr[2] << 16);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Get name from class code
|
// Get name from class code
|
||||||
|
|
Loading…
Reference in New Issue