mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
imx8mq: fix FRAC_PLL_REFCLK_SEL_MASK
Coverity reported dead code, however it is FRAC_PLL_REFCLK_SEL_MASK was wrongly set. Reported-by: Coverity 10045172 Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Ye Li <ye.li@nxp.com>
This commit is contained in:
parent
95bae9ff92
commit
d81e8cf6ea
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ enum clk_src_index {
|
||||||
#define FRAC_PLL_LOCK_MASK BIT(31)
|
#define FRAC_PLL_LOCK_MASK BIT(31)
|
||||||
#define FRAC_PLL_CLKE_MASK BIT(21)
|
#define FRAC_PLL_CLKE_MASK BIT(21)
|
||||||
#define FRAC_PLL_PD_MASK BIT(19)
|
#define FRAC_PLL_PD_MASK BIT(19)
|
||||||
#define FRAC_PLL_REFCLK_SEL_MASK BIT(16)
|
#define FRAC_PLL_REFCLK_SEL_MASK (0x3 << 16)
|
||||||
#define FRAC_PLL_LOCK_SEL_MASK BIT(15)
|
#define FRAC_PLL_LOCK_SEL_MASK BIT(15)
|
||||||
#define FRAC_PLL_BYPASS_MASK BIT(14)
|
#define FRAC_PLL_BYPASS_MASK BIT(14)
|
||||||
#define FRAC_PLL_COUNTCLK_SEL_MASK BIT(13)
|
#define FRAC_PLL_COUNTCLK_SEL_MASK BIT(13)
|
||||||
|
|
Loading…
Reference in a new issue