diff --git a/src/mainboard/google/nyan/pmic.c b/src/mainboard/google/nyan/pmic.c index a12d24eaeb..a625f550a0 100644 --- a/src/mainboard/google/nyan/pmic.c +++ b/src/mainboard/google/nyan/pmic.c @@ -44,7 +44,10 @@ void pmic_init(unsigned bus) */ /* First set VDD_CPU to 1.0V, then enable the VDD_CPU regulator. */ - pmic_write_reg(bus, 0x00, 0x28); + if (CONFIG_NYAN_IN_A_PIXEL) + pmic_write_reg(bus, 0x00, 0x28); + else + pmic_write_reg(bus, 0x00, 0x3c); /* First set VDD_GPU to 1.0V, then enable the VDD_GPU regulator. */ pmic_write_reg(bus, 0x06, 0x28);