]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/Library/MpInitLib/Ia32/CreatePageTable.c
UefiPayloadPkg: Move RTC PCD to dynamic PCD
[mirror_edk2.git] / UefiCpuPkg / Library / MpInitLib / Ia32 / CreatePageTable.c
CommitLineData
73ccde8f
XY
1/** @file\r
2 Function to create page talbe.\r
3 Only create page table for x64, and leave the CreatePageTable empty for Ia32.\r
4\r
5 Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>\r
6 SPDX-License-Identifier: BSD-2-Clause-Patent\r
7\r
8**/\r
9\r
10#include <Base.h>\r
11\r
12/**\r
13 Only create page table for x64, and leave the CreatePageTable empty for Ia32.\r
14\r
15 @param[in] LinearAddress The start of the linear address range.\r
16 @param[in] Length The length of the linear address range.\r
17\r
18 @return The page table to be created.\r
19**/\r
20UINTN\r
21CreatePageTable (\r
22 IN UINTN Address,\r
23 IN UINTN Length\r
24 )\r
25{\r
26 return 0;\r
27}\r