Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50078 )
Change subject: mb/google/auron/var/samus: Replace define with literal ......................................................................
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 --- M src/mainboard/google/auron/variants/samus/variant.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/78/50078/1
diff --git a/src/mainboard/google/auron/variants/samus/variant.c b/src/mainboard/google/auron/variants/samus/variant.c index 1e4a258..92226c1 100644 --- a/src/mainboard/google/auron/variants/samus/variant.c +++ b/src/mainboard/google/auron/variants/samus/variant.c @@ -29,11 +29,11 @@ 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); }