diff options
author | Tom Rini <trini@konsulko.com> | 2020-04-20 11:14:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-20 11:14:22 -0400 |
commit | 62c59545bad51936580012ee1cd2a728f1ca99fd (patch) | |
tree | d1d6d8ccbeda7b6019c63e41f97d10b17fd4db63 /board | |
parent | d1bbf833aa7b45c00a42227b9563134643e44237 (diff) | |
parent | e7510d443d30776248a2d5b8cc0e6b3161fb391b (diff) | |
download | u-boot-62c59545bad51936580012ee1cd2a728f1ca99fd.tar.gz |
Merge tag 'ti-v2020.07-rc1' of https://gitlab.denx.de/u-boot/custodians/u-boot-ti
- Fix boot on am335x guardian board
- Increase OPSI speed on AM65x and J721E devices
- Use JTAD register for identifying K3 devices.
- Update TI entry in MAINTAINERS file.
Diffstat (limited to 'board')
-rw-r--r-- | board/bosch/guardian/board.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/bosch/guardian/board.c b/board/bosch/guardian/board.c index 32ebaf4231..03ba9e8c5e 100644 --- a/board/bosch/guardian/board.c +++ b/board/bosch/guardian/board.c @@ -14,6 +14,7 @@ #include <env_internal.h> #include <errno.h> #include <i2c.h> +#include <led.h> #include <miiphy.h> #include <panel.h> #include <power/tps65217.h> @@ -232,6 +233,9 @@ err: int board_late_init(void) { +#ifdef CONFIG_LED_GPIO + led_default_state(); +#endif set_bootmode_env(); return 0; } |