Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8121
-gerrit
commit c2313fb467ddeedcfc2c198fc2695466f6b0f61b Author: Stefan Reinauer reinauer@chromium.org Date: Mon Jan 5 14:27:46 2015 -0800
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 --- src/soc/intel/broadwell/pei_data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/soc/intel/broadwell/pei_data.c b/src/soc/intel/broadwell/pei_data.c index aac7c7f..9ae7268 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>