diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 08:23:10 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 14:12:59 -0400 |
commit | 457e51cffdacf117c2afdd09d9bfc2f8df7314cb (patch) | |
tree | 8c57e8c2e3411e24bc1b827345c4a91f635128a2 /include/common.h | |
parent | 89f5eaa1ee9a3307e05458aa4f3b2155ab0a7144 (diff) | |
download | u-boot-457e51cffdacf117c2afdd09d9bfc2f8df7314cb.tar.gz |
common: arm: freescale: layerscape: Move header files out of common.h
We should not have an arch-specific header file in common.h. Adjust the
board files a little so it is not needed, and drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/common.h b/include/common.h index b97b61d65d..a413f1ae9b 100644 --- a/include/common.h +++ b/include/common.h @@ -31,13 +31,6 @@ typedef volatile unsigned char vu_char; #include <stdarg.h> #include <linux/kernel.h> -#ifdef CONFIG_FSL_LSCH3 -#include <asm/arch/immap_lsch3.h> -#endif -#ifdef CONFIG_FSL_LSCH2 -#include <asm/arch/immap_lsch2.h> -#endif - #include <part.h> #include <flash.h> #include <image.h> |