xref: /openbmc/openpower-hw-diags/util/pldm.hpp (revision bb90afc7)
1 #pragma once
2 
3 namespace util
4 {
5 namespace pldm
6 {
7 /*
8  *  @brief HRESET the SBE
9  *
10  *  @pre Host must be running
11  *
12  *  @param[in] sbeInstance - SBE to target (0 based)
13  *
14  *  @return true if HRESET successful
15  *
16  */
17 bool hresetSbe(unsigned int sbeInstance);
18 
19 } // namespace pldm
20 } // namespace util
21