aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/google/geralt/display.c2
-rw-r--r--src/mainboard/google/geralt/gpio.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/geralt/display.c b/src/mainboard/google/geralt/display.c
index eaee6c815a..5c81434fea 100644
--- a/src/mainboard/google/geralt/display.c
+++ b/src/mainboard/google/geralt/display.c
@@ -16,7 +16,7 @@
/* Set up backlight control pins as output pin and power-off by default */
static void configure_edp_panel_backlight(void)
{
- gpio_output(GPIO_AP_EDP_BKLTEN, 0);
+ gpio_output(GPIO_AP_DISP_BKLTEN, 0);
gpio_output(GPIO_EDP_BL_PWM_1V8, 0);
}
diff --git a/src/mainboard/google/geralt/gpio.h b/src/mainboard/google/geralt/gpio.h
index df2520a725..1840f21860 100644
--- a/src/mainboard/google/geralt/gpio.h
+++ b/src/mainboard/google/geralt/gpio.h
@@ -5,6 +5,7 @@
#include <soc/gpio.h>
+#define GPIO_AP_DISP_BKLTEN GPIO(GPIO01)
#define GPIO_AP_EC_WARM_RST_REQ GPIO(DPI_HSYNC)
#define GPIO_AP_WP_ODL GPIO(GPIO15)
#define GPIO_BEEP_ON_OD GPIO(I2SIN_WS)
@@ -13,7 +14,6 @@
#define GPIO_GSC_AP_INT_ODL GPIO(GPIO00)
#define GPIO_XHCI_INIT_DONE GPIO(DPI_CK)
-#define GPIO_AP_EDP_BKLTEN GPIO(GPIO01)
#define GPIO_EDP_BL_PWM_1V8 GPIO(DISP_PWM1)
#define GPIO_EDP_HPD_1V8 GPIO(GPIO17)
#define GPIO_EN_PP3300_EDP_DISP_X GPIO(DSI1_LCM_RST)