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>
This commit is contained in:
parent
16faa599e6
commit
4abd8076c8
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user