Revision: 16345
          http://sourceforge.net/p/edk2/code/16345
Author:   jljusten
Date:     2014-11-13 18:24:25 +0000 (Thu, 13 Nov 2014)
Log Message:
-----------
UefiCpuPkg/CpuDxe: Add no-op InitializeMpSupport

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <[email protected]>
Signed-off-by: Chen Fan <[email protected]>
Reviewed-by: Jeff Fan <[email protected]>

Modified Paths:
--------------
    trunk/edk2/UefiCpuPkg/CpuDxe/CpuDxe.c
    trunk/edk2/UefiCpuPkg/CpuDxe/CpuDxe.inf

Added Paths:
-----------
    trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.c
    trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.h

Modified: trunk/edk2/UefiCpuPkg/CpuDxe/CpuDxe.c
===================================================================
--- trunk/edk2/UefiCpuPkg/CpuDxe/CpuDxe.c       2014-11-13 16:41:51 UTC (rev 
16344)
+++ trunk/edk2/UefiCpuPkg/CpuDxe/CpuDxe.c       2014-11-13 18:24:25 UTC (rev 
16345)
@@ -13,6 +13,7 @@
 **/
 
 #include "CpuDxe.h"
+#include "CpuMp.h"
 
 //
 // Global Variables
@@ -897,6 +898,8 @@
                   );
   ASSERT_EFI_ERROR (Status);
 
+  InitializeMpSupport ();
+
   return Status;
 }
 

Modified: trunk/edk2/UefiCpuPkg/CpuDxe/CpuDxe.inf
===================================================================
--- trunk/edk2/UefiCpuPkg/CpuDxe/CpuDxe.inf     2014-11-13 16:41:51 UTC (rev 
16344)
+++ trunk/edk2/UefiCpuPkg/CpuDxe/CpuDxe.inf     2014-11-13 18:24:25 UTC (rev 
16345)
@@ -46,6 +46,8 @@
   CpuDxe.c
   CpuDxe.h
   CpuGdt.c
+  CpuMp.c
+  CpuMp.h
 
 [Sources.IA32]
   Ia32/CpuAsm.asm | MSFT

Added: trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.c
===================================================================
--- trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.c                                (rev 0)
+++ trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.c        2014-11-13 18:24:25 UTC (rev 
16345)
@@ -0,0 +1,28 @@
+/** @file
+  CPU DXE Module.
+
+  Copyright (c) 2008 - 2014, Intel Corporation. All rights reserved.<BR>
+  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
+  http://opensource.org/licenses/bsd-license.php
+
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+**/
+
+#include "CpuDxe.h"
+#include "CpuMp.h"
+
+/**
+  Initialize Multi-processor support.
+
+**/
+VOID
+InitializeMpSupport (
+  VOID
+  )
+{
+}
+

Added: trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.h
===================================================================
--- trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.h                                (rev 0)
+++ trunk/edk2/UefiCpuPkg/CpuDxe/CpuMp.h        2014-11-13 18:24:25 UTC (rev 
16345)
@@ -0,0 +1,28 @@
+/** @file
+  CPU DXE MP support
+
+  Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
+  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
+  http://opensource.org/licenses/bsd-license.php
+
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+**/
+
+#ifndef _CPU_MP_H_
+#define _CPU_MP_H_
+
+/**
+  Initialize Multi-processor support.
+
+**/
+VOID
+InitializeMpSupport (
+  VOID
+  );
+
+#endif // _CPU_MP_H_
+


------------------------------------------------------------------------------
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111&iu=/4140/ostg.clktrk
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to