diff options
| author | Tom Rini <[email protected]> | 2023-06-19 09:18:40 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-06-19 09:18:40 -0400 |
| commit | 50842b217fef505a0ec6662cc2acdc55d0bb23c5 (patch) | |
| tree | fa4e4ec78b8a479ded37aadd11fc62d8aa8ff029 /board | |
| parent | 1c30e10017ec8bcd0ffec0d8c7d17539ae73dfa7 (diff) | |
| parent | ee8f873678cca41df206f23883d6fe6a641a7f21 (diff) | |
Merge tag 'u-boot-at91-fixes-2023.07-a' of https://source.denx.de/u-boot/custodians/u-boot-at91
First set of u-boot-atmel fixes for the 2023.07 cycle:
This small fixes set includes one init fix for scmi clocks and a missing
gpio_request for pm9g45.
Diffstat (limited to 'board')
| -rw-r--r-- | board/ronetix/pm9g45/pm9g45.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/ronetix/pm9g45/pm9g45.c b/board/ronetix/pm9g45/pm9g45.c index c56582a1948..aa5c80ac641 100644 --- a/board/ronetix/pm9g45/pm9g45.c +++ b/board/ronetix/pm9g45/pm9g45.c @@ -67,10 +67,12 @@ static void pm9g45_nand_hw_init(void) #ifdef CFG_SYS_NAND_READY_PIN /* Configure RDY/BSY */ + gpio_request(CFG_SYS_NAND_READY_PIN, "NAND RDY/BSY"); gpio_direction_input(CFG_SYS_NAND_READY_PIN); #endif /* Enable NandFlash */ + gpio_request(CFG_SYS_NAND_ENABLE_PIN, "NAND enable"); gpio_direction_output(CFG_SYS_NAND_ENABLE_PIN, 1); } #endif |
