Reverse the processing order of assigned clocks property.

Linux processes these clocks in reverse order and some DT relies
on this fact. For example, the frequency setting for a given PLL
is the last in the list, preceded by the frequency setting of its
following divider or so...

MFC after:	1 week
This commit is contained in:
Michal Meloun 2020-07-12 07:59:15 +00:00
parent a9be5d7515
commit c0c5cf7b31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=363123

View File

@ -1407,7 +1407,7 @@ clk_set_assigned(device_t dev, phandle_t node)
if (ofw_bus_parse_xref_list_get_length(node,
"assigned-clock-parents", "#clock-cells", &nparents) != 0)
nparents = -1;
for (i = 0; i < nclocks; i++) {
for (i = nclocks - 1; i >= 0; i--) {
/* First get the clock we are supposed to modify */
rv = clk_get_by_ofw_index_prop(dev, 0, "assigned-clocks",
i, &clk);