summaryrefslogtreecommitdiffstats
path: root/data.hpp
blob: 6ef8911d27c6a50eb6d643da366ac9195c47e314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <cstdint>

namespace ipmi_flash
{

struct ExtChunkHdr
{
    std::uint32_t length; /* Length of the data queued (little endian). */
} __attribute__((packed));

/** P2A configuration response. */
struct PciConfigResponse
{
    std::uint32_t address;
} __attribute__((packed));

} // namespace ipmi_flash
OpenPOWER on IntegriCloud