mirror of https://github.com/acidanthera/audk.git
MdeModulePkg XhciPei: Fix build failure "conversion from 'UINT32' to 'UINT8', possible loss of data".
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15637 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
720624cce0
commit
4918a06a65
|
@ -1450,7 +1450,7 @@ XhcPeimEntry (
|
|||
|
||||
XhcDev->Signature = USB_XHC_DEV_SIGNATURE;
|
||||
XhcDev->UsbHostControllerBaseAddress = (UINT32) BaseAddress;
|
||||
XhcDev->CapLength = XhcPeiReadCapRegister (XhcDev, XHC_CAPLENGTH_OFFSET) & 0x0FF;
|
||||
XhcDev->CapLength = (UINT8) (XhcPeiReadCapRegister (XhcDev, XHC_CAPLENGTH_OFFSET) & 0x0FF);
|
||||
XhcDev->HcSParams1.Dword = XhcPeiReadCapRegister (XhcDev, XHC_HCSPARAMS1_OFFSET);
|
||||
XhcDev->HcSParams2.Dword = XhcPeiReadCapRegister (XhcDev, XHC_HCSPARAMS2_OFFSET);
|
||||
XhcDev->HcCParams.Dword = XhcPeiReadCapRegister (XhcDev, XHC_HCCPARAMS_OFFSET);
|
||||
|
|
Loading…
Reference in New Issue