mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/Include: API of IPMI Get System Interface Capabilities
Define the API for IPMI Get System Interface Capabilities command (0x57) Signed-off-by: Abner Chang <abner.chang@amd.com> Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Reviewed-by: Nickle Wang <nicklew@nvidia.com>
This commit is contained in:
parent
9a38ddc806
commit
fe43b42676
|
@ -249,6 +249,23 @@ IpmiGetChannelInfo (
|
||||||
OUT UINT32 *GetChannelInfoResponseSize
|
OUT UINT32 *GetChannelInfoResponseSize
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
This function gets system interface capability
|
||||||
|
|
||||||
|
@param[in] InterfaceCapabilityRequest Get system interface capability request.
|
||||||
|
@param[out] InterfaceCapabilityResponse The response of system interface capability.
|
||||||
|
|
||||||
|
@retval EFI_SUCCESS Command is sent successfully.
|
||||||
|
@retval Other Failure.
|
||||||
|
|
||||||
|
**/
|
||||||
|
EFI_STATUS
|
||||||
|
EFIAPI
|
||||||
|
IpmiGetSystemInterfaceCapability (
|
||||||
|
IN IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_REQUEST *InterfaceCapabilityRequest,
|
||||||
|
OUT IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_RESPONSE *InterfaceCapabilityResponse
|
||||||
|
);
|
||||||
|
|
||||||
//
|
//
|
||||||
// IPMI NetFnTransport
|
// IPMI NetFnTransport
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue