Skip to content

Commit 856e88e

Browse files
committed
clk: at91: allow 24 Mhz clock as input for PLL
The PLL input range needs to be able to allow 24 Mhz crystal as input Update the range accordingly in plla characteristics struct Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
1 parent 6b1b0e6 commit 856e88e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/clk/at91/sama5d2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static const struct clk_range plla_outputs[] = {
2121
};
2222

2323
static const struct clk_pll_characteristics plla_characteristics = {
24-
.input = { .min = 12000000, .max = 12000000 },
24+
.input = { .min = 12000000, .max = 24000000 },
2525
.num_output = ARRAY_SIZE(plla_outputs),
2626
.output = plla_outputs,
2727
.icpll = plla_icpll,

0 commit comments

Comments
 (0)