summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Baiocchi <mbaiocch@us.ibm.com>2019-04-18 14:56:26 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2019-04-19 11:43:14 -0500
commit1e1ea69fbf6036d9937071c8ecb70830bd45b188 (patch)
tree7e93ee495d221ec3f9be7e61e997e13f472e6d6e
parent3c3e5a250d39f331b5966415ff43d776c248a993 (diff)
downloadblackbird-hostboot-1e1ea69fbf6036d9937071c8ecb70830bd45b188.tar.gz
blackbird-hostboot-1e1ea69fbf6036d9937071c8ecb70830bd45b188.zip
Fix missing header file in eepromCache.C
There was a use of a CONSOLE function in eepromCache.C but the necessary header file console/consoleif.H was not included. Change-Id: Iae02a9fd6c1f6bcc45a1e287a6466bb626b2c079 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/76176 Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Reviewed-by: Matt Derksen <mderkse1@us.ibm.com> Reviewed-by: Matthew Raybuck <matthew.raybuck@ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
-rw-r--r--src/usr/i2c/eepromCache.C6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/usr/i2c/eepromCache.C b/src/usr/i2c/eepromCache.C
index a1231ad98..ef906302c 100644
--- a/src/usr/i2c/eepromCache.C
+++ b/src/usr/i2c/eepromCache.C
@@ -40,6 +40,10 @@
#include <pnor/pnorif.H>
#include <vpd/vpd_if.H>
#include <errl/errludtarget.H>
+#include <config.h>
+#ifdef CONFIG_CONSOLE
+#include <console/consoleif.H>
+#endif
extern trace_desc_t* g_trac_eeprom;
@@ -825,4 +829,4 @@ errlHndl_t eepromPerformOpCache(DeviceFW::OperationType i_opType,
return l_errl;
}
-} \ No newline at end of file
+}
OpenPOWER on IntegriCloud