Commit 39bc9b58 authored by Stephen Boyd's avatar Stephen Boyd

clk: qcom: gcc-sm6375: Ensure unsigned long type

This PLL frequency needs a UL postfix to avoid compiler warnings on
32-bit architectures.

Fixes: 184fdd87 ("clk: qcom: Add global clock controller driver for SM6375")
Cc: Konrad Dybcio <konrad.dybcio@somainline.org>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent a76d550f
......@@ -54,7 +54,7 @@ static struct pll_vco lucid_vco[] = {
};
static struct pll_vco zonda_vco[] = {
{ 595200000, 3600000000, 0 },
{ 595200000, 3600000000UL, 0 },
};
static struct clk_alpha_pll gpll0 = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment