Last change
on this file since 93492 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
523 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Detect Xen SMBIOS data on ARM / AARCH64.
|
---|
3 |
|
---|
4 | Copyright (C) 2015, Red Hat, Inc.
|
---|
5 | Copyright (c) 2011, Bei Guan <gbtju85@gmail.com>
|
---|
6 | Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
---|
7 |
|
---|
8 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | **/
|
---|
10 |
|
---|
11 | #include "SmbiosPlatformDxe.h"
|
---|
12 |
|
---|
13 | /**
|
---|
14 | Locates the Xen SMBIOS data if it exists
|
---|
15 |
|
---|
16 | @return SMBIOS_TABLE_ENTRY_POINT Address of Xen SMBIOS data
|
---|
17 |
|
---|
18 | **/
|
---|
19 | SMBIOS_TABLE_ENTRY_POINT *
|
---|
20 | GetXenSmbiosTables (
|
---|
21 | VOID
|
---|
22 | )
|
---|
23 | {
|
---|
24 | //
|
---|
25 | // Not implemented yet.
|
---|
26 | //
|
---|
27 | return NULL;
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.