From: Tim Harvey Date: Thu, 11 Aug 2022 18:57:04 +0000 (-0700) Subject: board: gateworks: venice: add GW7903 PMIC X-Git-Tag: baikal/mips/sdk5.8.2~5^2~177^2~34 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=94d40a86c64349476c4472313501723e5b136dae;p=uboot.git board: gateworks: venice: add GW7903 PMIC The GW7903 has a BD71847 PMIC on I2C1. Adjust the model compare strings to add it. Signed-off-by: Tim Harvey Reviewed-by: Fabio Estevam Reviewed-by: Jaehoon Chung --- diff --git a/board/gateworks/venice/spl.c b/board/gateworks/venice/spl.c index da36f227bc..98931c0475 100644 --- a/board/gateworks/venice/spl.c +++ b/board/gateworks/venice/spl.c @@ -171,11 +171,12 @@ static int power_init_board(void) } else if ((!strncmp(model, "GW7901", 6)) || - (!strncmp(model, "GW7902", 6))) { - if (!strncmp(model, "GW7901", 6)) - ret = uclass_get_device_by_seq(UCLASS_I2C, 1, &bus); - else + (!strncmp(model, "GW7902", 6)) || + (!strncmp(model, "GW7903", 6))) { + if (!strncmp(model, "GW7902", 6)) ret = uclass_get_device_by_seq(UCLASS_I2C, 0, &bus); + else + ret = uclass_get_device_by_seq(UCLASS_I2C, 1, &bus); if (ret) { printf("PMIC : failed I2C2 probe: %d\n", ret); return ret;