firmware: arm_scmi: Fix sorting of retrieved clock rates
authorCristian Marussi <cristian.marussi@arm.com>
Fri, 18 Mar 2022 09:28:13 +0000 (09:28 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Apr 2022 07:34:09 +0000 (09:34 +0200)
commitb0d8a9eb323972b2632531063ef5972e1c0c73aa
treee0304f56773a92fe013be35be6fbd90a108ef618
parente2da8f9ce3ea5d458b746b3a166f63d92d38bd36
firmware: arm_scmi: Fix sorting of retrieved clock rates

[ Upstream commit 23274739a5b6166f74d8d9cb5243d7bf6b46aab9 ]

During SCMI Clock protocol initialization, after having retrieved from the
SCMI platform all the available discrete rates for a specific clock, the
clock rates array is sorted, unfortunately using a pointer to its end as
a base instead of its start, so that sorting does not work.

Fix invocation of sort() passing as base a pointer to the start of the
retrieved clock rates array.

Link: https://lore.kernel.org/r/20220318092813.49283-1-cristian.marussi@arm.com
Fixes: dccec73de91d ("firmware: arm_scmi: Keep the discrete clock rates sorted")
Signed-off-by: Cristian Marussi <cristian.marussi@arm.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/firmware/arm_scmi/clock.c