]> git.baikalelectronics.ru Git - kernel.git/commit
cacheinfo: Use of_cpu_device_node_get instead cpu_dev->of_node
authorSudeep Holla <sudeep.holla@arm.com>
Mon, 4 Jul 2022 10:15:46 +0000 (11:15 +0100)
committerSudeep Holla <sudeep.holla@arm.com>
Mon, 4 Jul 2022 15:22:27 +0000 (16:22 +0100)
commit25908e84441a2562023e00736539fdccc47618bf
tree77ab8d2ab8053d3a7181a1e565f882f080517cf6
parent6b810663b534edf7ec9c74443f04d8badc72ca6d
cacheinfo: Use of_cpu_device_node_get instead cpu_dev->of_node

The of_cpu_device_node_get takes care of fetching the CPU'd device node
either from cached cpu_dev->of_node if cpu_dev is initialised or uses
of_get_cpu_node to parse and fetch node if cpu_dev isn't available yet.

Just use of_cpu_device_node_get instead of getting the cpu device first
and then using cpu_dev->of_node for two reasons:
1. There is no other use of cpu_dev and can be simplified
2. It enabled the use detect_cache_attributes and hence cache_setup_of_node
   much earlier before the CPUs are registered as devices.

Link: https://lore.kernel.org/r/20220704101605.1318280-3-sudeep.holla@arm.com
Tested-by: Ionela Voinescu <ionela.voinescu@arm.com>
Tested-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
drivers/base/cacheinfo.c