summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-09-18 10:23:02 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-09-26 12:29:53 +0200
commit361f2db7660cfce75b699b17a592cf2cf3cfed3f (patch)
treedf6b99aa09b74edbe7989faac5e7bff8e07c78e7
parent9fc58d665eeb8a25b2f4ae43740be4e758db01be (diff)
downloadbarebox-361f2db7660cfce75b699b17a592cf2cf3cfed3f.tar.gz
barebox-361f2db7660cfce75b699b17a592cf2cf3cfed3f.tar.xz
bootstrap: Add missing include
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--include/bootstrap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/bootstrap.h b/include/bootstrap.h
index 0fa6b83157..28852c0cb6 100644
--- a/include/bootstrap.h
+++ b/include/bootstrap.h
@@ -7,6 +7,8 @@
#ifndef __BOOSTRAP_H__
#define __BOOSTRAP_H__
+#include <common.h>
+
#define bootstrap_err(fmt, arg...) printf(fmt, ##arg)
void bootstrap_boot(int (*func)(void), bool barebox);