From: Claudiu Beznea Date: Mon, 11 Oct 2021 11:27:18 +0000 (+0300) Subject: clk: at91: sama7g5: set low limit for mck0 at 32KHz X-Git-Tag: v5.16-rc1~122^2~2^5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b59e619ef246a83b2d10e41345d2cfa27c4ea28;p=thirdparty%2Flinux.git clk: at91: sama7g5: set low limit for mck0 at 32KHz MCK0 could go as low as 32KHz. Set this limit. Signed-off-by: Claudiu Beznea Link: https://lore.kernel.org/r/20211011112719.3951784-15-claudiu.beznea@microchip.com Acked-by: Nicolas Ferre Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/at91/sama7g5.c b/drivers/clk/at91/sama7g5.c index fd9d17eabf549..369dfafabbca2 100644 --- a/drivers/clk/at91/sama7g5.c +++ b/drivers/clk/at91/sama7g5.c @@ -850,7 +850,7 @@ static const struct { /* MCK0 characteristics. */ static const struct clk_master_characteristics mck0_characteristics = { - .output = { .min = 50000000, .max = 200000000 }, + .output = { .min = 32768, .max = 200000000 }, .divisors = { 1, 2, 4, 3, 5 }, .have_div3_pres = 1, };