Skip to content

Commit

Permalink
board/novacustom/v5.0tnx/gpio.c: fix incorrect ME_WE pin direction
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Kopeć <[email protected]>
  • Loading branch information
mkopec committed Sep 10, 2024
1 parent 83bf314 commit 3786c8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/board/novacustom/v540tnx/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void gpio_init(void) {
// EC_RSMRST#
GPCRE5 = GPIO_OUT;
// ME_WE
GPCRE6 = GPIO_IN;
GPCRE6 = GPIO_OUT;
// SMD_BAT
GPCRE7 = GPIO_ALT | GPIO_UP;

Expand Down
2 changes: 1 addition & 1 deletion src/board/novacustom/v560tnx/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void gpio_init(void) {
// EC_RSMRST#
GPCRE5 = GPIO_OUT;
// ME_WE
GPCRE6 = GPIO_IN;
GPCRE6 = GPIO_OUT;
// SMD_BAT
GPCRE7 = GPIO_ALT | GPIO_UP;

Expand Down

0 comments on commit 3786c8c

Please sign in to comment.