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:
Angel Pons 2021-01-28 17:06:01 +01:00 committed by Patrick Georgi
parent e80fb4bd30
commit 9602a4ac77
1 changed files with 2 additions and 2 deletions

View File

@ -29,11 +29,11 @@ void mainboard_post_raminit(const int s3resume)
printk(BIOS_INFO, "MLB: board version %s\n", samus_board_version()); printk(BIOS_INFO, "MLB: board version %s\n", samus_board_version());
/* Bring SSD out of reset */ /* 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 * Enable PP3300_AUTOBAHN_EN after initial GPIO setup
* to prevent possible brownout. * to prevent possible brownout.
*/ */
set_gpio(BOARD_PP3300_AUTOBAHN_GPIO, GPIO_OUT_HIGH); set_gpio(BOARD_PP3300_AUTOBAHN_GPIO, 1);
} }