diff options
author | Mario Six <mario.six@gdsys.cc> | 2019-01-21 09:18:03 +0100 |
---|---|---|
committer | Mario Six <mario.six@gdsys.cc> | 2019-05-21 07:52:33 +0200 |
commit | fe7d654d04a4ba87813dcf8acb7a17373029770d (patch) | |
tree | acff08e60a356274b602f42d44a975b7a279eca2 /board | |
parent | daac2086ce1a36ffbd603eb643f45d14faae40e7 (diff) | |
download | u-boot-fe7d654d04a4ba87813dcf8acb7a17373029770d.tar.gz |
mpc83xx: Migrate CONFIG_SYS_{BR, OR}*_PRELIM to Kconfig
Migrate the BR/OR settings to Kconfig. These must be known at compile
time, so cannot be configured via DT.
Configuration of this crucial variable should still be somewhat
comfortable. Hence, make its fields configurable in Kconfig, and
assemble the final value from these.
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mpc8349itx/mpc8349itx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/freescale/mpc8349itx/mpc8349itx.c b/board/freescale/mpc8349itx/mpc8349itx.c index c4bec090be..62bcf23571 100644 --- a/board/freescale/mpc8349itx/mpc8349itx.c +++ b/board/freescale/mpc8349itx/mpc8349itx.c @@ -20,6 +20,7 @@ #endif #include "../../../arch/powerpc/cpu/mpc83xx/hrcw/hrcw.h" +#include "../../../arch/powerpc/cpu/mpc83xx/elbc/elbc.h" DECLARE_GLOBAL_DATA_PTR; |