diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-10-10 07:04:15 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-10-10 07:04:15 +0000 |
commit | db01f13e00e74bccde63152ef75a82f6bb8e1e81 (patch) | |
tree | a6c9be622a84c8ae1bd734d806f2f01d065ba3d4 /MdeModulePkg/Bus/Pci/EhciDxe/EhciUrb.c | |
parent | 15d10a4c78279190cc8aeef0ab9a8b7a9dedff23 (diff) | |
download | edk2-platforms-db01f13e00e74bccde63152ef75a82f6bb8e1e81.tar.xz |
Changed to pass the build with Visual Studio 2005
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4075 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Bus/Pci/EhciDxe/EhciUrb.c')
-rw-r--r-- | MdeModulePkg/Bus/Pci/EhciDxe/EhciUrb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Bus/Pci/EhciDxe/EhciUrb.c b/MdeModulePkg/Bus/Pci/EhciDxe/EhciUrb.c index 005e0596b6..bb272cc8de 100644 --- a/MdeModulePkg/Bus/Pci/EhciDxe/EhciUrb.c +++ b/MdeModulePkg/Bus/Pci/EhciDxe/EhciUrb.c @@ -294,7 +294,7 @@ EhcConvertPollRate ( BitCount++;
}
- return 1 << (BitCount - 1);
+ return (UINTN)1 << (BitCount - 1);
}
|