diff options
author | 2023-01-31 09:13:31 +0100 | |
---|---|---|
committer | 2023-01-31 09:13:31 +0100 | |
commit | 521d844dc85a8d6c01a3d0faf4809113f1f7beaf (patch) | |
tree | 5280f8f16257140d3f0f61077cd2e5428c3c0a4b | |
parent | Merge tag 'at91-soc-6.3' of https://git.kernel.org/pub/scm/linux/kernel/git/at91/linux into arm/soc (diff) | |
parent | ARM: BCM63xx: remove useless goto statement (diff) | |
download | wireguard-linux-521d844dc85a8d6c01a3d0faf4809113f1f7beaf.tar.xz wireguard-linux-521d844dc85a8d6c01a3d0faf4809113f1f7beaf.zip |
Merge tag 'arm-soc/for-6.3/soc' of https://github.com/Broadcom/stblinux into arm/soc
This pull request contains Broadcom ARM SoCs machine updates for 6.3,
please pull the following:
- Dario removes an useless goto in the BCM63xx SMP bring up code
* tag 'arm-soc/for-6.3/soc' of https://github.com/Broadcom/stblinux:
ARM: BCM63xx: remove useless goto statement
Link: https://lore.kernel.org/r/20230128193849.1628945-1-f.fainelli@gmail.com
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/arm/mach-bcm/bcm63xx_smp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-bcm/bcm63xx_smp.c b/arch/arm/mach-bcm/bcm63xx_smp.c index 641e1f8fcf5e..18d0ffc621aa 100644 --- a/arch/arm/mach-bcm/bcm63xx_smp.c +++ b/arch/arm/mach-bcm/bcm63xx_smp.c @@ -142,8 +142,7 @@ static int bcm63138_smp_boot_secondary(unsigned int cpu, */ ret = bcm63xx_pmb_power_on_cpu(dn); of_node_put(dn); - if (ret) - goto out; + out: iounmap(bootlut_base); |