]> www.infradead.org Git - users/dwmw2/linux.git/commit
clk: at91: generated: Truncate divisor to GENERATED_MAX_DIV + 1
authorCodrin Ciubotariu <codrin.ciubotariu@microchip.com>
Tue, 25 Jun 2019 09:10:02 +0000 (12:10 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Aug 2019 08:50:09 +0000 (10:50 +0200)
commitc9b83c9eb96ebfc94cb47ffd058435a15f7484db
tree7008465d244ba8bb03bfd3f1945f03aade4bc348
parent9f896cbc0a66c8cfa886e4709e9c0483226447a1
clk: at91: generated: Truncate divisor to GENERATED_MAX_DIV + 1

[ Upstream commit 1573eebeaa8055777eb753f9b4d1cbe653380c38 ]

In clk_generated_determine_rate(), if the divisor is greater than
GENERATED_MAX_DIV + 1, then the wrong best_rate will be returned.
If clk_generated_set_rate() will be called later with this wrong
rate, it will return -EINVAL, so the generated clock won't change
its value. Do no let the divisor be greater than GENERATED_MAX_DIV + 1.

Fixes: 8c7aa6328947 ("clk: at91: clk-generated: remove useless divisor loop")
Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Acked-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/clk/at91/clk-generated.c