diff --git a/src/mainboard/google/rauru/chromeos.c b/src/mainboard/google/rauru/chromeos.c index 6a8431fc6d..b7844b7afb 100644 --- a/src/mainboard/google/rauru/chromeos.c +++ b/src/mainboard/google/rauru/chromeos.c @@ -14,7 +14,7 @@ void setup_chromeos_gpios(void) gpio_input(GPIO_SD_CD_AP_ODL); gpio_output(GPIO_AP_EC_WARM_RST_REQ, 0); gpio_output(GPIO_AP_FP_FW_UP_STRAP, 0); - gpio_output(GPIO_BEEP_ON_OD, 0); + gpio_output(GPIO_BEEP_ON, 0); gpio_output(GPIO_EN_PWR_FP, 0); gpio_output(GPIO_EN_SPKR, 0); gpio_output(GPIO_FP_RST_1V8_S3_L, 0); @@ -39,7 +39,7 @@ void fill_lb_gpios(struct lb_gpios *gpios) struct lb_gpio nau8318_gpios[] = { {GPIO_EN_SPKR.id, ACTIVE_HIGH, -1, "speaker enable"}, - {GPIO_BEEP_ON_OD.id, ACTIVE_HIGH, -1, "beep enable"}, + {GPIO_BEEP_ON.id, ACTIVE_HIGH, -1, "beep enable"}, }; struct lb_gpio smartamp_gpios[] = { diff --git a/src/mainboard/google/rauru/gpio.h b/src/mainboard/google/rauru/gpio.h index f35135c484..fd15463a7a 100644 --- a/src/mainboard/google/rauru/gpio.h +++ b/src/mainboard/google/rauru/gpio.h @@ -5,7 +5,7 @@ #include -#define GPIO_BEEP_ON_OD GPIO(PERIPHERAL_EN1) +#define GPIO_BEEP_ON GPIO(PERIPHERAL_EN1) #define GPIO_EN_SPKR GPIO(PERIPHERAL_EN0) #define GPIO_SD_CD_AP_ODL GPIO(EINT11) #define GPIO_GSC_AP_INT_ODL GPIO(EINT18)