Message ID | cd6c8be4b476e04b2d18562bf72cc9387227e765.1732030972.git.Ryan.Wanner@microchip.com (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
Series | Add support for SAMA7D65 | expand |
On Tue, Nov 19, 2024 at 09:40:19AM -0700, Ryan.Wanner@microchip.com wrote: > From: Ryan Wanner <Ryan.Wanner@microchip.com> > > Increase maximum number of valid master clocks. The PMC for the SAMA7D65 > requires 9 master clocks. > > Signed-off-by: Ryan Wanner <Ryan.Wanner@microchip.com> > --- > drivers/clk/at91/clk-master.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > This goes with the driver change using more clocks, no? Why this is suitable as separate patch (without the user)? Best regards, Krzysztof
diff --git a/drivers/clk/at91/clk-master.c b/drivers/clk/at91/clk-master.c index 15c46489ba85..7a544e429d34 100644 --- a/drivers/clk/at91/clk-master.c +++ b/drivers/clk/at91/clk-master.c @@ -20,7 +20,7 @@ #define PMC_MCR_CSS_SHIFT (16) -#define MASTER_MAX_ID 4 +#define MASTER_MAX_ID 9 #define to_clk_master(hw) container_of(hw, struct clk_master, hw)