summaryrefslogtreecommitdiff
path: root/Platform/ARM/Drivers/BootMonFs/BootMonFsUnsupported.c
blob: 2161aeb38c3d1bcc8da98e32d8e1f16173f4e7df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** @file
*
*  Copyright (c) 2012-2014, ARM Limited. All rights reserved.
*
*  SPDX-License-Identifier: BSD-2-Clause-Patent
*
**/

#include "BootMonFsInternal.h"

EFIAPI
EFI_STATUS
BootMonFsSetPositionUnsupported (
  IN EFI_FILE_PROTOCOL  *This,
  IN UINT64             Position
  )
{
  ASSERT(0);
  return EFI_UNSUPPORTED;
}

EFIAPI
EFI_STATUS
BootMonFsGetPositionUnsupported (
  IN EFI_FILE_PROTOCOL  *This,
  OUT UINT64            *Position
  )
{
  ASSERT(0);
  return EFI_UNSUPPORTED;
}