diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-03-22 03:03:32 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-03-22 03:03:32 +0000 |
commit | cb41bea732ae6319ebbc9ccfa940e7433aae7a18 (patch) | |
tree | dcd072722213560df109effdf40ea34bd42664cc /EdkModulePkg/Core | |
parent | ebc5b9557e782974e82e29ee68bf28b0d73696a5 (diff) | |
download | edk2-platforms-cb41bea732ae6319ebbc9ccfa940e7433aae7a18.tar.xz |
1. Removed AsmSwitchStackAndBackingStore from BaseLib.h
2. Modified SwitchStack definition update to MWG 0.60e.
3. Added BaseLib/Ipf/InternalSwitchStack.c and removed BaseLib/Ipf/Non-existing.c
4. Updated any references of AsmSwitchStackAndBackingStore to SwichStack on IPF.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2499 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkModulePkg/Core')
-rw-r--r-- | EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c | 4 | ||||
-rw-r--r-- | EdkModulePkg/Core/Pei/Ipf/Stack.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c b/EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c index b7cdb9db45..34141ab9f6 100644 --- a/EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c +++ b/EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c @@ -1,6 +1,6 @@ /*++
-Copyright (c) 2006, Intel Corporation
+Copyright (c) 2006 - 2007, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -62,7 +62,7 @@ HandOffToDxeCore ( Status = PeiServicesInstallPpi (EndOfPeiSignal);
ASSERT_EFI_ERROR (Status);
- AsmSwitchStackAndBackingStore (
+ SwitchStack (
(SWITCH_STACK_ENTRY_POINT)(UINTN)DxeCoreEntryPoint,
HobList.Raw,
NULL,
diff --git a/EdkModulePkg/Core/Pei/Ipf/Stack.c b/EdkModulePkg/Core/Pei/Ipf/Stack.c index 57d04a27e5..56a876df15 100644 --- a/EdkModulePkg/Core/Pei/Ipf/Stack.c +++ b/EdkModulePkg/Core/Pei/Ipf/Stack.c @@ -1,7 +1,7 @@ /** @file
PeiSwitchStacks() function for PEI dispatcher.
- Copyright (c) 2006, Intel Corporation<BR>
+ Copyright (c) 2006 - 2007, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -48,7 +48,7 @@ PeiSwitchStacks ( IN VOID *NewBsp
)
{
- AsmSwitchStackAndBackingStore (
+ SwitchStack (
EntryPoint,
Context1,
Context2,
|