diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2017-07-30 06:23:11 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-08-01 20:17:02 +0800 |
commit | 30b1ecd26533fdd680b66c0ed6767cc4b875fbc6 (patch) | |
tree | 7d4b4ded4de35c8db731ab0f86a66106e82cbaf9 /board/google/chromebox_panther | |
parent | 1e452b4686efd06a8bfe826969566f2128f9e248 (diff) | |
download | u-boot-30b1ecd26533fdd680b66c0ed6767cc4b875fbc6.tar.gz u-boot-30b1ecd26533fdd680b66c0ed6767cc4b875fbc6.tar.bz2 u-boot-30b1ecd26533fdd680b66c0ed6767cc4b875fbc6.zip |
x86: kconfig: Let board select BOARD_EARLY_INIT_F
CONFIG_BOARD_EARLY_INIT_F literally indicates board-specific codes
and should be not 'default y' for all x86 boards.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/google/chromebox_panther')
-rw-r--r-- | board/google/chromebox_panther/panther.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/google/chromebox_panther/panther.c b/board/google/chromebox_panther/panther.c index e3baf88783..ed60e44264 100644 --- a/board/google/chromebox_panther/panther.c +++ b/board/google/chromebox_panther/panther.c @@ -11,8 +11,3 @@ int arch_early_init_r(void) { return 0; } - -int board_early_init_f(void) -{ - return 0; -} |