diff options
| author | Tom Rini <[email protected]> | 2024-07-18 07:49:14 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-07-18 07:49:14 -0600 |
| commit | dce89b3bfc5ed2d2f5439474f7edda1a3b085094 (patch) | |
| tree | 2d3fdebd6e4f5b737604be4b15076e2c2ccd1e4e /drivers/power | |
| parent | 84ab75fb56337a7c186044850d3f6555bc644df1 (diff) | |
| parent | e8b3f6c1018e1401bcc697a8aed8120061e4f189 (diff) | |
Merge tag 'u-boot-rockchip-20240718' of https://source.denx.de/u-boot/custodians/u-boot-rockchip
- Add boards:
rk3328: Radxa ROCK Pi E v3;
rk3588s: FriendlyElec NanoPi R6C/S;
- Remove board: Theobroma Systems RK3368 Lion;
- Add rk3588 pcie support;
- Misc updates for board and config;
CI: https://source.denx.de/u-boot/custodians/u-boot-rockchip/-/pipelines/2163
Diffstat (limited to 'drivers/power')
| -rw-r--r-- | drivers/power/pmic/rk8xx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/power/pmic/rk8xx.c b/drivers/power/pmic/rk8xx.c index 617bb511e4e..4d5a5ceafad 100644 --- a/drivers/power/pmic/rk8xx.c +++ b/drivers/power/pmic/rk8xx.c @@ -281,6 +281,8 @@ static int rk8xx_probe(struct udevice *dev) show_variant = bitfield_extract_by_mask(priv->variant, RK8XX_ID_MSK); switch (priv->variant) { case RK808_ID: + /* RK808 ID is 0x0000, so fix show_variant for that PMIC */ + show_variant = 0x808; break; case RK805_ID: case RK816_ID: |
