]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/Library/NorFlashPlatformNullLib/NorFlashPlatformNullLib.c
ArmPlatformPkg: Apply uncrustify changes
[mirror_edk2.git] / ArmPlatformPkg / Library / NorFlashPlatformNullLib / NorFlashPlatformNullLib.c
1 /** @file
2
3 Copyright (c) 2014, Linaro Ltd. All rights reserved.<BR>
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include <Library/NorFlashPlatformLib.h>
10
11 EFI_STATUS
12 NorFlashPlatformInitialization (
13 VOID
14 )
15 {
16 return EFI_SUCCESS;
17 }
18
19 EFI_STATUS
20 NorFlashPlatformGetDevices (
21 OUT NOR_FLASH_DESCRIPTION **NorFlashDescriptions,
22 OUT UINT32 *Count
23 )
24 {
25 *NorFlashDescriptions = NULL;
26 *Count = 0;
27 return EFI_SUCCESS;
28 }