ID: 3612372 - Recognize Broadcom IANA number and BCM5725 product

Commit adds BCM IANA and BCM5725 product number.

Commit for Rob Swindell
This commit is contained in:
Zdenek Styblik 2013-06-02 12:38:23 +00:00
parent 8489426a63
commit 811da1307a
2 changed files with 4 additions and 0 deletions

View File

@ -266,6 +266,7 @@ typedef enum IPMI_OEM {
IPMI_OEM_DELL = 674, IPMI_OEM_DELL = 674,
IPMI_OEM_LMC = 2168, IPMI_OEM_LMC = 2168,
IPMI_OEM_RADISYS = 4337, IPMI_OEM_RADISYS = 4337,
IPMI_OEM_BROADCOM = 4413,
IPMI_OEM_MAGNUM = 5593, IPMI_OEM_MAGNUM = 5593,
IPMI_OEM_TYAN = 6653, IPMI_OEM_TYAN = 6653,
IPMI_OEM_NEWISYS = 9237, IPMI_OEM_NEWISYS = 9237,

View File

@ -67,6 +67,7 @@ const struct valstr ipmi_oem_info[] = {
{ IPMI_OEM_NOKIA_SIEMENS_NETWORKS, "Nokia Siemens Networks" }, { IPMI_OEM_NOKIA_SIEMENS_NETWORKS, "Nokia Siemens Networks" },
{ IPMI_OEM_BULL, "Bull Company" }, { IPMI_OEM_BULL, "Bull Company" },
{ IPMI_OEM_PPS, "Pigeon Point Systems" }, { IPMI_OEM_PPS, "Pigeon Point Systems" },
{ IPMI_OEM_BROADCOM, "Broadcom Corporation" },
{ 0xffff , NULL }, { 0xffff , NULL },
}; };
@ -112,6 +113,8 @@ const struct oemvalstr ipmi_oem_product_info[] = {
{ IPMI_OEM_KONTRON,5007, "AT8050" }, { IPMI_OEM_KONTRON,5007, "AT8050" },
{ IPMI_OEM_KONTRON,5301, "AT8400" }, { IPMI_OEM_KONTRON,5301, "AT8400" },
{ IPMI_OEM_KONTRON,5303, "AT8901" }, { IPMI_OEM_KONTRON,5303, "AT8901" },
/* Broadcom */
{ IPMI_OEM_BROADCOM, 5725, "BCM5725" },
{ 0xffffff , 0xffff , NULL }, { 0xffffff , 0xffff , NULL },
}; };