]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.c
ArmPlatformPkg: Tidy Lcd code: Coding standard
[mirror_edk2.git] / ArmPlatformPkg / Library / LcdPlatformNullLib / LcdPlatformNullLib.c
CommitLineData
e10c7914
GP
1/** @file\r
2\r
3 Copyright (c) 2017, Linaro, Ltd. All rights reserved.\r
4\r
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
12\r
13**/\r
14\r
15#include <Base.h>\r
16#include <Uefi/UefiBaseType.h>\r
17#include <Library/DebugLib.h>\r
18#include <Library/LcdPlatformLib.h>\r
19\r
20EFI_STATUS\r
21LcdPlatformInitializeDisplay (\r
22 IN EFI_HANDLE Handle\r
23 )\r
24{\r
25 ASSERT (FALSE);\r
26 return EFI_UNSUPPORTED;\r
27}\r
28\r
29EFI_STATUS\r
30LcdPlatformGetVram (\r
31 OUT EFI_PHYSICAL_ADDRESS* VramBaseAddress,\r
32 OUT UINTN* VramSize\r
33 )\r
34{\r
35 ASSERT (FALSE);\r
36 return EFI_UNSUPPORTED;\r
37}\r
38\r
39UINT32\r
40LcdPlatformGetMaxMode (\r
41 VOID\r
42 )\r
43{\r
44 ASSERT (FALSE);\r
45 return 0;\r
46}\r
47\r
48EFI_STATUS\r
49LcdPlatformSetMode (\r
50 IN UINT32 ModeNumber\r
51 )\r
52{\r
53 ASSERT (FALSE);\r
54 return EFI_UNSUPPORTED;\r
55}\r
56\r
57EFI_STATUS\r
58LcdPlatformQueryMode (\r
59 IN UINT32 ModeNumber,\r
60 OUT EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info\r
61 )\r
62{\r
63 ASSERT (FALSE);\r
64 return EFI_UNSUPPORTED;\r
65}\r
66\r
67EFI_STATUS\r
68LcdPlatformGetTimings (\r
69 IN UINT32 ModeNumber,\r
70 OUT UINT32* HRes,\r
71 OUT UINT32* HSync,\r
72 OUT UINT32* HBackPorch,\r
73 OUT UINT32* HFrontPorch,\r
74 OUT UINT32* VRes,\r
75 OUT UINT32* VSync,\r
76 OUT UINT32* VBackPorch,\r
77 OUT UINT32* VFrontPorch\r
78 )\r
79{\r
80 ASSERT (FALSE);\r
81 return EFI_UNSUPPORTED;\r
82}\r
83\r
84EFI_STATUS\r
85LcdPlatformGetBpp (\r
86 IN UINT32 ModeNumber,\r
87 OUT LCD_BPP* Bpp\r
88 )\r
89{\r
90 ASSERT (FALSE);\r
91 return EFI_UNSUPPORTED;\r
92}\r