[Armadeus-commitlog] UNNAMED PROJECT branch, opos6ul-2018.05, updated. 525d5256f0d07d9862c8e0af395
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2020-03-23 11:43:15
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "UNNAMED PROJECT".
The branch, opos6ul-2018.05 has been updated
via 525d5256f0d07d9862c8e0af395308c7e22793b1 (commit)
from 175d7b94a15d705cccbd6bad4f214fea40383cef (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 525d5256f0d07d9862c8e0af395308c7e22793b1
Author: Gildas PRIME <gil...@bi...>
Date: Mon Mar 23 12:40:50 2020 +0100
opos6ulspdev: update backlight gpio with latest schemas
Tested-by: Sébastien Szymanski <seb...@ar...>
-----------------------------------------------------------------------
Summary of changes:
board/armadeus/opos6ulspdev/board.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/board/armadeus/opos6ulspdev/board.c b/board/armadeus/opos6ulspdev/board.c
index 0483a9c9ca..97cc6ff0f7 100644
--- a/board/armadeus/opos6ulspdev/board.c
+++ b/board/armadeus/opos6ulspdev/board.c
@@ -59,7 +59,7 @@ static iomux_v3_cfg_t const lcd_pads[] = {
MX6_PAD_LCD_DATA16__LCDIF_DATA16 | MUX_PAD_CTRL(LCD_PAD_CTRL),
MX6_PAD_LCD_DATA17__LCDIF_DATA17 | MUX_PAD_CTRL(LCD_PAD_CTRL),
- MX6_PAD_GPIO1_IO09__GPIO1_IO09 | MUX_PAD_CTRL(NO_PAD_CTRL)
+ MX6_PAD_JTAG_TDI__GPIO1_IO13 | MUX_PAD_CTRL(NO_PAD_CTRL)
};
int setup_lcd(void)
@@ -70,15 +70,15 @@ int setup_lcd(void)
imx_iomux_v3_setup_multiple_pads(lcd_pads, ARRAY_SIZE(lcd_pads));
/* Set Brightness to high */
- ret = dm_gpio_lookup_name("GPIO1_9", &backlight);
+ ret = dm_gpio_lookup_name("GPIO1_13", &backlight);
if (ret) {
- printf("Cannot get GPIO1_9\n");
+ printf("Cannot get GPIO1_13\n");
return ret;
}
ret = dm_gpio_request(&backlight, "backlight");
if (ret) {
- printf("Cannot request GPIO1_9\n");
+ printf("Cannot request GPIO1_13\n");
return ret;
}
hooks/post-receive
--
UNNAMED PROJECT
|