mb/google/auron/var/samus: Replace define with literal
The `GPIO_OUT_HIGH` macro is not present on Lynxpoint headers. Change-Id: I12dd065bee49097c602febf18c6c9940ecec5106 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50078 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
e80fb4bd30
commit
9602a4ac77
|
@ -29,11 +29,11 @@ void mainboard_post_raminit(const int s3resume)
|
|||
printk(BIOS_INFO, "MLB: board version %s\n", samus_board_version());
|
||||
|
||||
/* Bring SSD out of reset */
|
||||
set_gpio(BOARD_SSD_RESET_GPIO, GPIO_OUT_HIGH);
|
||||
set_gpio(BOARD_SSD_RESET_GPIO, 1);
|
||||
|
||||
/*
|
||||
* Enable PP3300_AUTOBAHN_EN after initial GPIO setup
|
||||
* to prevent possible brownout.
|
||||
*/
|
||||
set_gpio(BOARD_PP3300_AUTOBAHN_GPIO, GPIO_OUT_HIGH);
|
||||
set_gpio(BOARD_PP3300_AUTOBAHN_GPIO, 1);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue