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-23 08:39:55 +0200
commit47974cac82a59427972373a6d0e6c23eda81ba3b (patch)
tree6521a6f47074746abcedbdeeb69dba14c40b41f7
parente0be72d3cd3924c369e242637744d7864f79e660 (diff)
downloadbarebox-47974cac82a59427972373a6d0e6c23eda81ba3b.tar.gz
barebox-47974cac82a59427972373a6d0e6c23eda81ba3b.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);