mirror of https://github.com/acidanthera/audk.git
19 lines
424 B
C
19 lines
424 B
C
/** @file
|
|
IPMI 2.0 definitions from the IPMI Specification Version 2.0, Revision 1.1.
|
|
|
|
Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
|
|
#ifndef IPMI_NET_FN_OEM_H_
|
|
#define IPMI_NET_FN_OEM_H_
|
|
|
|
//
|
|
// Net function definition for OEM/Group command
|
|
//
|
|
#define IPMI_NETFN_OEM 0x2E
|
|
#define IPMI_NETFN_OEM_GROUP 0x2F
|
|
|
|
#endif
|