diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2019-03-29 09:21:13 +0100 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2019-03-29 09:21:13 +0100 |
commit | a2893baa47ce17ef97a8bff6b6af9223785db74d (patch) | |
tree | 9a5866fbd1aeaa9e9486dd5282a0eea6e12b46c6 | |
parent | 1111ff671f65a71f8577fe145b53f1f0c920faa4 (diff) | |
download | u-boot-a2893baa47ce17ef97a8bff6b6af9223785db74d.tar.gz u-boot-a2893baa47ce17ef97a8bff6b6af9223785db74d.tar.xz u-boot-a2893baa47ce17ef97a8bff6b6af9223785db74d.zip |
Revert "rockchip: Drop call to rockchip_dnl_mode_check() for now"
Due to a final resolution not coming up in time for 2019.04 and
following the consensus on the discussion, we'll keep this around
for 2019.04 after all.
This reverts commit 0d968ceb1ff63b0d220a571f438f0d5fe6350e88.
-rw-r--r-- | arch/arm/mach-rockchip/boot_mode.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/arm/mach-rockchip/boot_mode.c b/arch/arm/mach-rockchip/boot_mode.c index d7997d71e3..f32b3c4ce5 100644 --- a/arch/arm/mach-rockchip/boot_mode.c +++ b/arch/arm/mach-rockchip/boot_mode.c @@ -61,13 +61,7 @@ int setup_boot_mode(void) void *reg = (void *)CONFIG_ROCKCHIP_BOOT_MODE_REG; int boot_mode = readl(reg); - /* - * This should be handled using a driver-tree property and a suitable - * driver which can read the appropriate settings. As it is, this - * breaks chromebook_minnie.\ - * - * rockchip_dnl_mode_check(); - */ + rockchip_dnl_mode_check(); boot_mode = readl(reg); debug("%s: boot mode 0x%08x\n", __func__, boot_mode); |