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

Commit 490cad5a authored by Florian Fainelli's avatar Florian Fainelli
Browse files

soc: brcmstb: Fix error path for unsupported CPUs



In case setup_hifcpubiuctrl_regs() returns an error, because of e.g:
an unsupported CPU type, just catch that error and return instead of
blindly continuing with the initialization. This fixes a NULL pointer
de-reference with the code continuing without having a proper array of
registers to use.

Fixes: 22f7a911 ("soc: brcmstb: Correct CPU_CREDIT_REG offset for Brahma-B53 CPUs")
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent a188339c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -246,7 +246,9 @@ static int __init brcmstb_biuctrl_init(void)
	if (!np)
		return 0;

	setup_hifcpubiuctrl_regs(np);
	ret = setup_hifcpubiuctrl_regs(np);
	if (ret)
		return ret;

	ret = mcp_write_pairing_set();
	if (ret) {