ARM: broadcom: Use of_get_cpu_hwid()

Replace open coded parsing of CPU nodes 'reg' property with
of_get_cpu_hwid().

Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: Ray Jui <rjui@broadcom.com>
Cc: Scott Branden <sbranden@broadcom.com>
Cc: bcm-kernel-feedback-list@broadcom.com
Cc: Russell King <linux@armlinux.org.uk>
Signed-off-by: Rob Herring <robh@kernel.org>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Tested-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/20211006164332.1981454-4-robh@kernel.org
This commit is contained in:
Rob Herring 2021-10-06 11:43:23 -05:00
parent ca96bbe246
commit eb11b5a956
1 changed files with 3 additions and 3 deletions

View File

@ -91,10 +91,10 @@ static int bcm63xx_pmb_get_resources(struct device_node *dn,
struct of_phandle_args args;
int ret;
ret = of_property_read_u32(dn, "reg", cpu);
if (ret) {
*cpu = of_get_cpu_hwid(dn, 0);
if (*cpu == ~0U) {
pr_err("CPU is missing a reg node\n");
return ret;
return -ENODEV;
}
ret = of_parse_phandle_with_args(dn, "resets", "#reset-cells",