diff options
author | Giulio Benetti | 2020-01-10 15:46:54 +0100 |
---|---|---|
committer | Stefano Babic | 2020-01-14 22:53:59 +0100 |
commit | 4abd8076c8875247f391d11968a436ca65c8f5a9 (patch) | |
tree | 9c28d0eb298390514ec4b6037b57346089e33862 /drivers | |
parent | 16faa599e6c448bf6aad146c63edf6bd7c5a2dad (diff) |
clk: imx: pllv3: set div_mask differently if PLLV3 is GENERIC or USB
div_mask is different for GENERIC and USB pll, so set it according.
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/imx/clk-pllv3.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/clk/imx/clk-pllv3.c b/drivers/clk/imx/clk-pllv3.c index d1e4c3fe303..02c75c37eaf 100644 --- a/drivers/clk/imx/clk-pllv3.c +++ b/drivers/clk/imx/clk-pllv3.c @@ -55,9 +55,11 @@ struct clk *imx_clk_pllv3(enum imx_pllv3_type type, const char *name, switch (type) { case IMX_PLLV3_GENERIC: drv_name = UBOOT_DM_CLK_IMX_PLLV3_GENERIC; + pll->div_shift = 0; break; case IMX_PLLV3_USB: drv_name = UBOOT_DM_CLK_IMX_PLLV3_USB; + pll->div_shift = 1; break; default: kfree(pll); |