Closed LaurentiuM1234 closed 8 months ago
Currently, the driver has to keep track of all the clocks it uses via an array of "struct clk_bulkdata", which doesn't scale well and is unnecessary. As such, replace the usage of the imx8*_clocks with "devm_clk_bulk_get_all()" and friends.
Looks good to me @LaurentiuM1234. We can now remove the implementation of imx8_parse_clocks from imx-common.c also.
imx8_parse_clocks
V2 changes
imx8_*_clocks
@lgirdwood this is good to merge.
Currently, the driver has to keep track of all the clocks it uses via an array of "struct clk_bulkdata", which doesn't scale well and is unnecessary. As such, replace the usage of the imx8*_clocks with "devm_clk_bulk_get_all()" and friends.