1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| /** @file
| Header file for SerialIoPrivateLibInternal.
|
| Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
| **/
| #ifndef _SERIAL_IO_PRIVATE_LIB_INTERNAL_H_
| #define _SERIAL_IO_PRIVATE_LIB_INTERNAL_H_
|
| typedef struct {
| UINT32 Bar0;
| UINT32 Bar1;
| } SERIAL_IO_CONTROLLER_DESCRIPTOR;
|
| typedef struct {
| UINT8 DevNum;
| UINT8 FuncNum;
| } SERIAL_IO_BDF_NUMBERS;
|
| #endif
|
|