commit | 2dd337afce57bd7ec26699c77ae6cc07b85aa01e | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Wed Sep 02 17:24:58 2015 -0600 |
committer | Tom Rini <trini@konsulko.com> | Fri Sep 11 17:15:20 2015 -0400 |
tree | 0ccaa4c6fb0edf61e473c58cfcba827c65d9ae15 | |
parent | a87fc0a92ad085536fbb4e7fcc75e053cfe70c60 [diff] [blame] |
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>
diff --git a/drivers/net/e1000.c b/drivers/net/e1000.c index 7b830ff..2ba03ed 100644 --- a/drivers/net/e1000.c +++ b/drivers/net/e1000.c
@@ -32,6 +32,7 @@ #include <common.h> #include <dm.h> #include <errno.h> +#include <memalign.h> #include <pci.h> #include "e1000.h"