diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-25 05:51:23 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-25 05:51:23 +0000 |
commit | abea19dbe10720a4ef4f9e688996d71a493cebe9 (patch) | |
tree | a27ccd6b591aa35c094d9f076975e146447dc1b2 /MdePkg/Include/Library/UefiLib.h | |
parent | ee19dec64fba479016c168daa80bc61fbd395936 (diff) | |
download | edk2-platforms-abea19dbe10720a4ef4f9e688996d71a493cebe9.tar.xz |
PeiSmbusLib & DxeSmbusLib
Remove Arp Related interfaces
Change the return type of SmbusQuickWrite from “BOOLEAN” to “VOID”
Complete interface SmBusBlockProcessCall()
Make the PEC bit “bit 21” of SMBUS address. If data show that MSB helps to save code size in BaseSmbusLib, we may simply redefine it to be MAX_BIT.
UefiLib
Modify the interfaces in UefiNotTiano.c to sync with spec
MemoryAllocationLib
Add extra checking in “Aligned” Memory services to prevent “AllocationSize + OverAllocation” overflow in DxeMemoryAllocationLib.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@23 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/UefiLib.h')
-rw-r--r-- | MdePkg/Include/Library/UefiLib.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Include/Library/UefiLib.h b/MdePkg/Include/Library/UefiLib.h index 73b761f790..fd3bdac53e 100644 --- a/MdePkg/Include/Library/UefiLib.h +++ b/MdePkg/Include/Library/UefiLib.h @@ -412,7 +412,7 @@ EfiSignalEventLegacyBoot ( EFI_STATUS
EFIAPI
EfiCreateEventLegacyBoot (
- OUT EFI_EVENT *LegacyBootEvent
+ OUT EFI_EVENT *LegacyBootEvent
);
/**
@@ -434,7 +434,7 @@ EfiCreateEventLegacyBoot ( EFI_STATUS
EFIAPI
EfiCreateEventReadyToBoot (
- OUT EFI_EVENT *ReadyToBootEvent
+ OUT EFI_EVENT *ReadyToBootEvent
);
/**
@@ -454,8 +454,8 @@ EfiCreateEventReadyToBoot ( VOID
EFIAPI
EfiInitializeFwVolDevicepathNode (
- IN MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvDevicePathNode,
- IN EFI_GUID *NameGuid
+ IN OUT MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvDevicePathNode,
+ IN CONST EFI_GUID *NameGuid
);
/**
@@ -479,7 +479,7 @@ EfiInitializeFwVolDevicepathNode ( EFI_GUID *
EFIAPI
EfiGetNameGuidFromFwVolDevicePathNode (
- IN MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvDevicePathNode
+ IN CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *FvDevicePathNode
);
|