diff options
author | Krzysztof Kozlowski | 2019-03-06 19:37:52 +0100 |
---|---|---|
committer | Minkyu Kang | 2019-03-11 15:53:19 +0900 |
commit | 345a53685f7dc7a8da8fbc1be596c02c7209bfbf (patch) | |
tree | 6971bec70bf95f99ade9ad4732624b4450b5443b /board | |
parent | e3ee4be3210a79e39af9b15077f0b119095ee52f (diff) |
arm: exynos: odroid-xu3: Display info late to have proper type
Printing the "Type" of board requires proper detection of revision which
can happen only late because regulators are needed.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Tested-by: Anand Moon <linux.amoon@gmail.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/samsung/common/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index 58ecb22d75a..9adbd1e2cf9 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -249,7 +249,7 @@ int board_eth_init(bd_t *bis) return 0; } -#ifdef CONFIG_DISPLAY_BOARDINFO +#if defined(CONFIG_DISPLAY_BOARDINFO) || defined(CONFIG_DISPLAY_BOARDINFO_LATE) int checkboard(void) { if (IS_ENABLED(CONFIG_BOARD_TYPES)) { |