Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 427d6e48 authored by Chen-Yu Tsai's avatar Chen-Yu Tsai Committed by Olof Johansson
Browse files

bus: sunxi-rsb: Fix primary PMIC mapping hardware address



The primary PMICs use 0x3a3 as their hardware address, not 0x3e3.

Signed-off-by: default avatarChen-Yu Tsai <wens@csie.org>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent c4aa1937
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -527,7 +527,7 @@ static int sunxi_rsb_init_device_mode(struct sunxi_rsb *rsb)
 */
 */


static const struct sunxi_rsb_addr_map sunxi_rsb_addr_maps[] = {
static const struct sunxi_rsb_addr_map sunxi_rsb_addr_maps[] = {
	{ 0x3e3, 0x2d }, /* Primary PMIC: AXP223, AXP809, AXP81X, ... */
	{ 0x3a3, 0x2d }, /* Primary PMIC: AXP223, AXP809, AXP81X, ... */
	{ 0x745, 0x3a }, /* Secondary PMIC: AXP806, ... */
	{ 0x745, 0x3a }, /* Secondary PMIC: AXP806, ... */
	{ 0xe89, 0x45 }, /* Peripheral IC: AC100, ... */
	{ 0xe89, 0x45 }, /* Peripheral IC: AC100, ... */
};
};