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   This program and the accompanying materials are licensed and made available
9   under the terms and conditions of the BSD License which accompanies this
10   distribution.  The full text of the license may be found at
11   http://opensource.org/licenses/bsd-license.php
12 
13   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT
14   WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 **/
16 
17 #include "SmbiosPlatformDxe.h"
18 
19 /**
20   Locates the Xen SMBIOS data if it exists
21 
22   @return SMBIOS_TABLE_ENTRY_POINT   Address of Xen SMBIOS data
23 
24 **/
25 SMBIOS_TABLE_ENTRY_POINT *
GetXenSmbiosTables(VOID)26 GetXenSmbiosTables (
27   VOID
28   )
29 {
30   //
31   // Not implemented yet.
32   //
33   return NULL;
34 }
35