Patrick Venture | 84778b8 | 2019-06-26 20:11:09 -0700 | [diff] [blame] | 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 |