diff options
author | Simon Glass <sjg@chromium.org> | 2015-09-02 17:24:58 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-09-11 17:15:20 -0400 |
commit | cf92e05c0135bc2b1a1b25a3218e31e6d79bad59 (patch) | |
tree | 0ccaa4c6fb0edf61e473c58cfcba827c65d9ae15 /common/env_nand.c | |
parent | 6e295186c7fc8bf5be22a05f6ca9602f2bb507f2 (diff) | |
download | u-boot-cf92e05c0135bc2b1a1b25a3218e31e6d79bad59.tar.gz |
Move ALLOC_CACHE_ALIGN_BUFFER() to the new memalign.h header
Now that we have a new header file for cache-aligned allocation, we should
move the stack-based allocation macro there also.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/env_nand.c')
-rw-r--r-- | common/env_nand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/env_nand.c b/common/env_nand.c index 92e0e053df..b32eeac9d7 100644 --- a/common/env_nand.c +++ b/common/env_nand.c @@ -19,6 +19,7 @@ #include <environment.h> #include <linux/stddef.h> #include <malloc.h> +#include <memalign.h> #include <nand.h> #include <search.h> #include <errno.h> |