diff options
author | Kever Yang <kever.yang@rock-chips.com> | 2019-07-22 15:02:14 +0300 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2019-07-29 05:27:45 +0300 |
commit | 271318a660eefe5623286eceaefd1b49389cbbdc (patch) | |
tree | d9163e309b988b45888ca5985ebae26de300e0da /board/phytec | |
parent | 88a87bcbb344ec63c62c001c356aaad8f60c84fa (diff) | |
download | u-boot-271318a660eefe5623286eceaefd1b49389cbbdc.tar.xz |
rockchip: rk3288: Move rk3288_detect_reset_reason to soc file
The rk3288_detect_reset_reason() is per-SoC operation, move
it to rk3288.c, and extend the rk_board_late_init() with
rk3288_board_late_init() to make all the board works fine
as before.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'board/phytec')
-rw-r--r-- | board/phytec/phycore_rk3288/phycore-rk3288.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/phytec/phycore_rk3288/phycore-rk3288.c b/board/phytec/phycore_rk3288/phycore-rk3288.c index fbf1511978..92f3bd25f4 100644 --- a/board/phytec/phycore_rk3288/phycore-rk3288.c +++ b/board/phytec/phycore_rk3288/phycore-rk3288.c @@ -30,7 +30,7 @@ static int valid_rk3288_som(struct rk3288_som *som) return hw == som->bs; } -int rk_board_late_init(void) +int rk3288_board_late_init(void) { int ret; struct udevice *dev; |