blob: a94ada2b1ae3fcff15be7932cab8b2e5fc3ff627 [file] [log] [blame]
Artem Senichev67355a82018-03-16 12:35:51 +03001From 177df7658cbd8c78d5f3cf043e78d02880945b85 Mon Sep 17 00:00:00 2001
2From: Artem Senichev <a.senichev@yadro.com>
3Date: Tue, 13 Mar 2018 15:50:51 +0300
4Subject: [PATCH] Set IBM instead of AMI for eSEL
5
6Originally created by MSI (S188).
7The root cause is that the latest openbmc replace the NETFUN_AMI with
8NETFUN_IBM, so bmc can't log the eSEL from PNOR.
9
10Signed-off-by: Artem Senichev <a.senichev@yadro.com>
11---
12 src/include/usr/ipmi/ipmiif.H | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/src/include/usr/ipmi/ipmiif.H b/src/include/usr/ipmi/ipmiif.H
16index 44283cc0b..0f1309e31 100644
17--- a/src/include/usr/ipmi/ipmiif.H
18+++ b/src/include/usr/ipmi/ipmiif.H
19@@ -258,7 +258,7 @@ namespace IPMI
20
21 //AMI-specific storage messages
22 inline const command_t partial_add_esel(void)
23- { return std::make_pair(NETFUN_AMI, 0xf0); }
24+ { return std::make_pair(NETFUN_IBM, 0xf0); }
25
26 // event messages
27 inline const command_t platform_event(void)
28--
292.14.1
30