blob: 6ef8911d27c6a50eb6d643da366ac9195c47e314 [file] [log] [blame]
Patrick Venture84778b82019-06-26 20:11:09 -07001#pragma once
2
3#include <cstdint>
4
5namespace ipmi_flash
6{
7
8struct ExtChunkHdr
9{
10 std::uint32_t length; /* Length of the data queued (little endian). */
11} __attribute__((packed));
12
13/** P2A configuration response. */
14struct PciConfigResponse
15{
16 std::uint32_t address;
17} __attribute__((packed));
18
19} // namespace ipmi_flash