diff options
author | Tom Rini <trini@konsulko.com> | 2017-12-13 17:58:18 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-12-13 17:58:18 -0500 |
commit | 9ebc54b8a67b4112e7978493d1d588b3f4e3069b (patch) | |
tree | 58882718c411eb317d0705f169694927f51e280e /board/samsung/common/exynos5-dt.c | |
parent | 659208da4703de50826a469cbb38bf6afb938978 (diff) | |
parent | 7090ead3f2a821c6f043ecbb5f7cecf6ffecdebb (diff) |
Merge git://git.denx.de/u-boot-samsung
Diffstat (limited to 'board/samsung/common/exynos5-dt.c')
-rw-r--r-- | board/samsung/common/exynos5-dt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/samsung/common/exynos5-dt.c b/board/samsung/common/exynos5-dt.c index 0d17f30712..a4eb351405 100644 --- a/board/samsung/common/exynos5-dt.c +++ b/board/samsung/common/exynos5-dt.c @@ -176,7 +176,7 @@ char *get_dfu_alt_system(char *interface, char *devstr) { char *info = "Not supported!"; - if (board_is_odroidxu4()) + if (board_is_odroidxu4() || board_is_odroidhc1()) return info; return env_get("dfu_alt_system"); @@ -189,7 +189,7 @@ char *get_dfu_alt_boot(char *interface, char *devstr) char *alt_boot; int dev_num; - if (board_is_odroidxu4()) + if (board_is_odroidxu4() || board_is_odroidhc1()) return info; dev_num = simple_strtoul(devstr, NULL, 10); |