]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/Library/ArmPlatformLibNull/ArmPlatformLibNullMem.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / ArmPlatformPkg / Library / ArmPlatformLibNull / ArmPlatformLibNullMem.c
CommitLineData
12fcdcb8 1/** @file\r
2*\r
3* Copyright (c) 2011, ARM Limited. All rights reserved.\r
12fcdcb8 4*\r
3402aac7
RC
5* This program and the accompanying materials\r
6* are licensed and made available under the terms and conditions of the BSD License\r
7* which accompanies this distribution. The full text of the license may be found at\r
8* http://opensource.org/licenses/bsd-license.php\r
9*\r
10* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12fcdcb8 12*\r
13**/\r
14\r
15#include <Library/ArmPlatformLib.h>\r
16#include <Library/DebugLib.h>\r
17\r
18/**\r
19 Return the Virtual Memory Map of your platform\r
20\r
21 This Virtual Memory Map is used by MemoryInitPei Module to initialize the MMU on your platform.\r
22\r
23 @param[out] VirtualMemoryMap Array of ARM_MEMORY_REGION_DESCRIPTOR describing a Physical-to-\r
24 Virtual Memory mapping. This array must be ended by a zero-filled\r
25 entry\r
26\r
27**/\r
28VOID\r
29ArmPlatformGetVirtualMemoryMap (\r
30 IN ARM_MEMORY_REGION_DESCRIPTOR** VirtualMemoryMap\r
31 )\r
32{\r
33 ASSERT(0);\r
34}\r