mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2024-12-29 09:13:38 +00:00
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:
parent
ca96bbe246
commit
eb11b5a956
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user