commit | 46f387d7619cb54e2b7c4f9aa25b0c23631543dd | [log] [tgz] |
---|---|---|
author | Mike Partington <mparting@lexmark.com> | Wed Oct 27 10:31:09 2010 +0000 |
committer | Wolfgang Denk <wd@denx.de> | Tue Dec 06 20:52:35 2011 +0100 |
tree | cbd67d5cc3e23ee070d6551ad8c0e11f55c9fc56 | |
parent | 1cd368d5d99c2d4a5f77c7cc4dacc39e603f4954 [diff] |
Standalone Apps: Standalone apps should need only exports.h. Modify exports.h to remove its dependencies on other files, thus enabling standalone apps to require only exports.h from the U-Boot source tree. This appears to be the intent based on the following note: http://lists.denx.de/pipermail/u-boot/2010-January/067174.html Signed-off-by: Mike Partington <mparting@lexmark.com>
diff --git a/examples/standalone/atmel_df_pow2.c b/examples/standalone/atmel_df_pow2.c index b5b4503..2e14aba 100644 --- a/examples/standalone/atmel_df_pow2.c +++ b/examples/standalone/atmel_df_pow2.c
@@ -8,6 +8,7 @@ #include <common.h> #include <exports.h> +#include <spi.h> #define CMD_ID 0x9f #define CMD_STAT 0xd7
diff --git a/examples/standalone/stubs.c b/examples/standalone/stubs.c index 11c7565..a6add6a 100644 --- a/examples/standalone/stubs.c +++ b/examples/standalone/stubs.c
@@ -1,3 +1,4 @@ +#include <common.h> #include <exports.h> #ifndef GCC_VERSION