diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-10-07 14:48:22 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-22 10:32:16 -0600 |
commit | dc7cb46f9707d27c9a9d66684c391062ccf8773f (patch) | |
tree | 60ab7529b3b7b3d6192973ddc81f780c629e6409 | |
parent | 2cede453dadae5bacd9c659704029bf81e7b06a0 (diff) | |
download | u-boot-imx-dc7cb46f9707d27c9a9d66684c391062ccf8773f.zip u-boot-imx-dc7cb46f9707d27c9a9d66684c391062ccf8773f.tar.gz u-boot-imx-dc7cb46f9707d27c9a9d66684c391062ccf8773f.tar.bz2 |
linker_lists: include <linux/compiler.h>
The header file include/linker_lists.h uses __aligned();
therefore it depends on include/linux/compiler.h
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | include/linker_lists.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linker_lists.h b/include/linker_lists.h index 507d61b..046ac90 100644 --- a/include/linker_lists.h +++ b/include/linker_lists.h @@ -11,6 +11,8 @@ #ifndef __LINKER_LISTS_H__ #define __LINKER_LISTS_H__ +#include <linux/compiler.h> + /* * There is no use in including this from ASM files, but that happens * anyway, e.g. PPC kgdb.S includes command.h which incluse us. |