summaryrefslogtreecommitdiff
path: root/board/fizz
diff options
context:
space:
mode:
Diffstat (limited to 'board/fizz')
-rw-r--r--board/fizz/board.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/board/fizz/board.c b/board/fizz/board.c
index 4de18e7ec8..8d0c0fd2a2 100644
--- a/board/fizz/board.c
+++ b/board/fizz/board.c
@@ -433,16 +433,14 @@ static void board_pmic_init(void)
if (err)
goto pmic_error;
- if (oem == OEM_TEEMO) {
- /*
- * V100ACNT Register Field Description. Default: 0x2A
- * [1:0] : 11b Forced PWM Operation.
- * [5:4] : 01b Output Voltage Select Vnom (1V)
- */
- err = I2C_PMIC_WRITE(TPS650X30_REG_V100ACNT, 0x1B);
- if (err)
- goto pmic_error;
- }
+ /*
+ * V100ACNT Register Field Description. Default: 0x2A
+ * [1:0] : 11b Forced PWM Operation.
+ * [5:4] : 01b Output Voltage Select Vnom (1V)
+ */
+ err = I2C_PMIC_WRITE(TPS650X30_REG_V100ACNT, 0x1B);
+ if (err)
+ goto pmic_error;
CPRINTS("PMIC init done");
pmic_initialized = 1;