Skip to content

Commit 0b59e61

Browse files
claudiubezneabebarino
authored andcommitted
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Acked-by: Nicolas Ferre <[email protected]> Signed-off-by: Stephen Boyd <[email protected]>
1 parent facb87a commit 0b59e61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/at91/sama7g5.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ static const struct {
850850

851851
/* MCK0 characteristics. */
852852
static const struct clk_master_characteristics mck0_characteristics = {
853-
.output = { .min = 50000000, .max = 200000000 },
853+
.output = { .min = 32768, .max = 200000000 },
854854
.divisors = { 1, 2, 4, 3, 5 },
855855
.have_div3_pres = 1,
856856
};

0 commit comments

Comments
 (0)