mirror of https://github.com/acidanthera/audk.git
Explicitly cast PCD_CALLBACK to EFI_PCD_PPI_CALLBACK/EFI_PCD_PROTOCOL_CALLBACK) to avoid warning. PCD_CALLBACK in EDKII implementation is compatible with EFI_PCD_PPI_CALLBACK/EFI_PCD_PROTOCOL_CALLBACK.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9474 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ec735bb205
commit
0c561f4175
|
@ -904,7 +904,7 @@ LibPcdCallbackOnSet (
|
|||
|
||||
ASSERT (NotificationFunction != NULL);
|
||||
|
||||
Status = mPiPcd->CallbackOnSet (Guid, TokenNumber, NotificationFunction);
|
||||
Status = mPiPcd->CallbackOnSet (Guid, TokenNumber, (EFI_PCD_PROTOCOL_CALLBACK) NotificationFunction);
|
||||
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
|
@ -938,7 +938,7 @@ LibPcdCancelCallback (
|
|||
|
||||
ASSERT (NotificationFunction != NULL);
|
||||
|
||||
Status = mPiPcd->CancelCallback (Guid, TokenNumber, NotificationFunction);
|
||||
Status = mPiPcd->CancelCallback (Guid, TokenNumber, (EFI_PCD_PROTOCOL_CALLBACK) NotificationFunction);
|
||||
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
|
|
|
@ -893,7 +893,7 @@ LibPcdCallbackOnSet (
|
|||
|
||||
ASSERT (NotificationFunction != NULL);
|
||||
|
||||
Status = (GetPiPcdPpiPointer ())->CallbackOnSet (Guid, TokenNumber, NotificationFunction);
|
||||
Status = (GetPiPcdPpiPointer ())->CallbackOnSet (Guid, TokenNumber, (EFI_PCD_PPI_CALLBACK) NotificationFunction);
|
||||
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
|
@ -927,7 +927,7 @@ LibPcdCancelCallback (
|
|||
|
||||
ASSERT (NotificationFunction != NULL);
|
||||
|
||||
Status = (GetPiPcdPpiPointer ())->CancelCallback (Guid, TokenNumber, NotificationFunction);
|
||||
Status = (GetPiPcdPpiPointer ())->CancelCallback (Guid, TokenNumber, (EFI_PCD_PPI_CALLBACK) NotificationFunction);
|
||||
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
|
|
Loading…
Reference in New Issue