xref: /openbmc/phosphor-ipmi-flash/data.hpp (revision 84778b8d)
1 #pragma once
2 
3 #include <cstdint>
4 
5 namespace ipmi_flash
6 {
7 
8 struct ExtChunkHdr
9 {
10     std::uint32_t length; /* Length of the data queued (little endian). */
11 } __attribute__((packed));
12 
13 /** P2A configuration response. */
14 struct PciConfigResponse
15 {
16     std::uint32_t address;
17 } __attribute__((packed));
18 
19 } // namespace ipmi_flash
20