diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-10 05:46:29 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-10 05:46:29 +0000 |
commit | 25ca163d0cff76660887a4e973c4aec8c0b6f594 (patch) | |
tree | 22a6a3dca454e3b52547417f2245eb5e78c96025 | |
parent | 173b35e4694885abec8f72a2ac6bdb9aa1ab15ca (diff) | |
download | edk2-platforms-25ca163d0cff76660887a4e973c4aec8c0b6f594.tar.xz |
Fix GCC building warning.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4809 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Include/Library/GenericBdsLib.h | 2 | ||||
-rw-r--r-- | MdeModulePkg/Library/GenericBdsLib/BdsConnect.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Include/Library/GenericBdsLib.h b/MdeModulePkg/Include/Library/GenericBdsLib.h index 9266a86bfe..9c5d967c7a 100644 --- a/MdeModulePkg/Include/Library/GenericBdsLib.h +++ b/MdeModulePkg/Include/Library/GenericBdsLib.h @@ -536,7 +536,7 @@ BdsLibUpdateFvFileDevicePath ( EFI_STATUS
BdsLibConnectUsbDevByShortFormDP (
- IN CHAR8 HostControllerPI,
+ IN UINT8 HostControllerPI,
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
);
diff --git a/MdeModulePkg/Library/GenericBdsLib/BdsConnect.c b/MdeModulePkg/Library/GenericBdsLib/BdsConnect.c index 98a6709c69..54a650dcea 100644 --- a/MdeModulePkg/Library/GenericBdsLib/BdsConnect.c +++ b/MdeModulePkg/Library/GenericBdsLib/BdsConnect.c @@ -339,7 +339,7 @@ BdsLibConnectAllDriversToAllControllers ( **/ EFI_STATUS BdsLibConnectUsbDevByShortFormDP( - IN CHAR8 HostControllerPI, + IN UINT8 HostControllerPI, IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath ) { |