]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Library/ArmLib/Null/NullArmLib.c
Update the copyright notice format
[mirror_edk2.git] / ArmPkg / Library / ArmLib / Null / NullArmLib.c
CommitLineData
2ef2b01e
A
1/** @file\r
2\r
d6ebcab7 3 Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
2ef2b01e 4 \r
d6ebcab7 5 This program and the accompanying materials\r
2ef2b01e
A
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
12\r
13**/\r
14\r
15#include <Uefi.h>\r
16#include <Library/ArmLib.h>\r
17#include <Library/DebugLib.h>\r
18\r
19VOID\r
20EFIAPI\r
21ArmCleanInvalidateDataCache (\r
22 VOID\r
23 )\r
24{\r
25 // Do not run code using the Null cache library.\r
26 ASSERT(FALSE);\r
27}\r
28\r
29VOID\r
30EFIAPI\r
31ArmCleanDataCache (\r
32 VOID\r
33 )\r
34{\r
35 // Do not run code using the Null cache library.\r
36 ASSERT(FALSE);\r
37}\r
38\r
39VOID\r
40EFIAPI\r
41ArmInvalidateInstructionCache (\r
42 VOID\r
43 )\r
44{\r
45 // Do not run code using the Null cache library.\r
46 ASSERT(FALSE);\r
47}\r
48\r
49VOID\r
50EFIAPI\r
51ArmInvalidateDataCacheEntryByMVA (\r
52 IN UINTN Address\r
53 )\r
54{\r
55 // Do not run code using the Null cache library.\r
56 ASSERT(FALSE);\r
57}\r
58\r
59VOID\r
60EFIAPI\r
61ArmCleanDataCacheEntryByMVA (\r
62 IN UINTN Address\r
63 )\r
64{\r
65 // Do not run code using the Null cache library.\r
66 ASSERT(FALSE);\r
67}\r
68\r
69VOID\r
70EFIAPI\r
71ArmCleanInvalidateDataCacheEntryByMVA (\r
72 IN UINTN Address\r
73 )\r
74{\r
75 // Do not run code using the Null cache library.\r
76 ASSERT(FALSE);\r
77}\r
78\r
79VOID\r
80EFIAPI\r
81ArmEnableDataCache (\r
82 VOID\r
83 )\r
84{\r
85 // Do not run code using the Null cache library.\r
86 ASSERT(FALSE);\r
87}\r
88\r
89VOID\r
90EFIAPI\r
91ArmDisableDataCache (\r
92 VOID\r
93 )\r
94{\r
95 // Do not run code using the Null cache library.\r
96 ASSERT(FALSE);\r
97}\r
98\r
99VOID\r
100EFIAPI\r
101ArmEnableInstructionCache (\r
102 VOID\r
103 )\r
104{\r
105 // Do not run code using the Null cache library.\r
106 ASSERT(FALSE);\r
107}\r
108\r
109VOID\r
110EFIAPI\r
111ArmDisableInstructionCache (\r
112 VOID\r
113 )\r
114{\r
115 // Do not run code using the Null cache library.\r
116 ASSERT(FALSE);\r
117}\r