2017-12-05 11:09:59 +01:00
|
|
|
/** @file
|
|
|
|
|
|
|
|
Copyright (c) 2014, Linaro Ltd. All rights reserved.<BR>
|
|
|
|
|
2019-04-04 01:03:21 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2017-12-05 11:09:59 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <Library/NorFlashPlatformLib.h>
|
|
|
|
|
|
|
|
EFI_STATUS
|
|
|
|
NorFlashPlatformInitialization (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
EFI_STATUS
|
|
|
|
NorFlashPlatformGetDevices (
|
|
|
|
OUT NOR_FLASH_DESCRIPTION **NorFlashDescriptions,
|
|
|
|
OUT UINT32 *Count
|
|
|
|
)
|
|
|
|
{
|
|
|
|
*NorFlashDescriptions = NULL;
|
|
|
|
*Count = 0;
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|