summaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/pei_data.c
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2015-01-05 14:27:46 -0800
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-01-06 18:23:29 +0100
commitd548e5c6d977cc76cd02a8c8d0d402ec840123f7 (patch)
tree1dec80c3c99ee4019b7f10698b297a8432c71764 /src/soc/intel/broadwell/pei_data.c
parent8de452da2e3219eebd337927c62ddda50ca38323 (diff)
downloadcoreboot-d548e5c6d977cc76cd02a8c8d0d402ec840123f7.tar.xz
broadwell: Use correct include file for console functions
console_tx_byte() is defined in stream.h, not console.h. This will cause problems later, when untangling more ROMCC and console code. Hence, fix the issue beforehand. Change-Id: If4e04bd6c69b630912414676950157d06c364d74 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/8121 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/soc/intel/broadwell/pei_data.c')
-rw-r--r--src/soc/intel/broadwell/pei_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/broadwell/pei_data.c b/src/soc/intel/broadwell/pei_data.c
index aac7c7fcb7..9ae7268971 100644
--- a/src/soc/intel/broadwell/pei_data.c
+++ b/src/soc/intel/broadwell/pei_data.c
@@ -17,9 +17,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include <console/console.h>
#include <stdlib.h>
#include <stdint.h>
+#include <console/streams.h>
#include <broadwell/iomap.h>
#include <broadwell/pei_data.h>
#include <broadwell/pei_wrapper.h>