diff options
author | Tom Rini <trini@konsulko.com> | 2023-05-16 11:16:42 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-16 11:16:42 -0400 |
commit | 5645a50a8639a53856bcda60f5eb9e07a5bd31a9 (patch) | |
tree | 30c9ab7fd5b86a4a74aa554720cdb3fcaa67c8a0 /board | |
parent | c21fc9e1529e22c7acffe9bec7c0500ea15559dc (diff) | |
parent | 6d677ea8ecd11c26e45dae1ed855ec275177b149 (diff) | |
download | u-boot-5645a50a8639a53856bcda60f5eb9e07a5bd31a9.tar.gz |
Merge branch '2023-05-15-assorted-bugfixes'
- Merge in a long-standing fix for some exynos platforms, correct a
Kconfig description, fix some env issues, fix an issue in
devfdt_get_addr_size_index_ptr and look for "panel-timings" not
"panel-timing" per upstream binding.
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 16ce5cb892..663d7ca991 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -223,7 +223,7 @@ int board_late_init(void) char mmcbootdev_str[16]; ret = uclass_first_device_err(UCLASS_CROS_EC, &dev); - if (ret && ret != -ENODEV) { + if (ret && ret != -ENODEV && ret != -EPFNOSUPPORT) { /* Force console on */ gd->flags &= ~GD_FLG_SILENT; |