
Since the Armbian sources refer to linux 4.19.76 as being linux-mainline, all the patches from linux-4.19 were moved to linux-mainline_4.19 and the linux_4.19.76 recipes was named accordingly. This patch makes 4.19.76 as default version for linux Signed-off-by: Vicentiu Galanopulo <vicentiu@balena.io>
30 lines
1 KiB
Diff
30 lines
1 KiB
Diff
diff --git a/drivers/clk/sunxi-ng/ccu_nkmp.c b/drivers/clk/sunxi-ng/ccu_nkmp.c
|
|
index ebd9436d2c7c..9b49adb20d07 100644
|
|
--- a/drivers/clk/sunxi-ng/ccu_nkmp.c
|
|
+++ b/drivers/clk/sunxi-ng/ccu_nkmp.c
|
|
@@ -137,6 +137,13 @@ static long ccu_nkmp_round_rate(struct clk_hw *hw, unsigned long rate,
|
|
if (nkmp->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
|
rate *= nkmp->fixed_post_div;
|
|
|
|
+ if (nkmp->max_rate && rate > nkmp->max_rate) {
|
|
+ rate = nkmp->max_rate;
|
|
+ if (nkmp->common.features & CCU_FEATURE_FIXED_POSTDIV)
|
|
+ rate /= nkmp->fixed_post_div;
|
|
+ return rate;
|
|
+ }
|
|
+
|
|
_nkmp.min_n = nkmp->n.min ?: 1;
|
|
_nkmp.max_n = nkmp->n.max ?: 1 << nkmp->n.width;
|
|
_nkmp.min_k = nkmp->k.min ?: 1;
|
|
diff --git a/drivers/clk/sunxi-ng/ccu_nkmp.h b/drivers/clk/sunxi-ng/ccu_nkmp.h
|
|
index 6940503e7fc4..a9f8c116a745 100644
|
|
--- a/drivers/clk/sunxi-ng/ccu_nkmp.h
|
|
+++ b/drivers/clk/sunxi-ng/ccu_nkmp.h
|
|
@@ -35,6 +35,7 @@ struct ccu_nkmp {
|
|
struct ccu_div_internal p;
|
|
|
|
unsigned int fixed_post_div;
|
|
+ unsigned int max_rate;
|
|
|
|
struct ccu_common common;
|
|
};
|