]> www.infradead.org Git - users/jedix/linux-maple.git/commit
cpufreq: spear: Use of_property_for_each_u32() instead of open coding
authorRob Herring (Arm) <robh@kernel.org>
Wed, 31 Jul 2024 20:16:15 +0000 (14:16 -0600)
committerViresh Kumar <viresh.kumar@linaro.org>
Wed, 7 Aug 2024 06:41:45 +0000 (12:11 +0530)
commit9b3cc56c24d80671763b4b6b7ea4aed213059d32
treebbc138c0770b6657b6501d1c5edf2d7f35cae856
parent872cc94c7e3d874373f56b035f998631c6b26d22
cpufreq: spear: Use of_property_for_each_u32() instead of open coding

Use of_property_count_u32_elems() and of_property_for_each_u32() instead
of of_find_property() and open coding the property parsing.

This is part of a larger effort to remove callers of of_find_property()
and similar functions. of_find_property() leaks the DT struct property
and data pointers which is a problem for dynamically allocated nodes
which may be freed.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
[Viresh: Fixed build failure and initialize / increment 'i']
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/spear-cpufreq.c