Ben Tyner | bb90afc | 2022-12-14 20:50:33 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Pavithra Barithaya | 36b043e | 2024-10-14 15:37:53 +0530 | [diff] [blame] | 3 | #include <libpldm/instance-id.h> |
| 4 | |
Ben Tyner | bb90afc | 2022-12-14 20:50:33 -0600 | [diff] [blame] | 5 | namespace util |
| 6 | { |
| 7 | namespace pldm |
| 8 | { |
| 9 | /* |
| 10 | * @brief HRESET the SBE |
| 11 | * |
| 12 | * @pre Host must be running |
| 13 | * |
| 14 | * @param[in] sbeInstance - SBE to target (0 based) |
| 15 | * |
| 16 | * @return true if HRESET successful |
| 17 | * |
| 18 | */ |
| 19 | bool hresetSbe(unsigned int sbeInstance); |
| 20 | |
| 21 | } // namespace pldm |
| 22 | } // namespace util |