Last change
on this file since 109019 was 108794, checked in by vboxsync, 4 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
387 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 |
|
---|
3 | Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
|
---|
4 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
5 |
|
---|
6 | **/
|
---|
7 |
|
---|
8 | #include "PiSmmCpuCommon.h"
|
---|
9 |
|
---|
10 | /**
|
---|
11 | Return whether access to non-SMRAM is restricted.
|
---|
12 |
|
---|
13 | @retval TRUE Access to non-SMRAM is restricted.
|
---|
14 | @retval FALSE Access to non-SMRAM is not restricted.
|
---|
15 | **/
|
---|
16 | BOOLEAN
|
---|
17 | IsRestrictedMemoryAccess (
|
---|
18 | VOID
|
---|
19 | )
|
---|
20 | {
|
---|
21 | return TRUE;
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.