mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 14:34:28 +08:00
clk: sifive: Fix the wrong bit field shift
The clk enable bit should be 31 instead of 24. Signed-off-by: Zong Li <zong.li@sifive.com> Reported-by: Pragnesh Patel <pragnesh.patel@sifive.com> Link: https://lore.kernel.org/r/20201209094916.17383-5-zong.li@sifive.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
efc91ae43c
commit
263ac39085
@ -59,7 +59,7 @@
|
|||||||
|
|
||||||
/* DDRPLLCFG1 */
|
/* DDRPLLCFG1 */
|
||||||
#define PRCI_DDRPLLCFG1_OFFSET 0x10
|
#define PRCI_DDRPLLCFG1_OFFSET 0x10
|
||||||
#define PRCI_DDRPLLCFG1_CKE_SHIFT 24
|
#define PRCI_DDRPLLCFG1_CKE_SHIFT 31
|
||||||
#define PRCI_DDRPLLCFG1_CKE_MASK (0x1 << PRCI_DDRPLLCFG1_CKE_SHIFT)
|
#define PRCI_DDRPLLCFG1_CKE_MASK (0x1 << PRCI_DDRPLLCFG1_CKE_SHIFT)
|
||||||
|
|
||||||
/* GEMGXLPLLCFG0 */
|
/* GEMGXLPLLCFG0 */
|
||||||
@ -81,7 +81,7 @@
|
|||||||
|
|
||||||
/* GEMGXLPLLCFG1 */
|
/* GEMGXLPLLCFG1 */
|
||||||
#define PRCI_GEMGXLPLLCFG1_OFFSET 0x20
|
#define PRCI_GEMGXLPLLCFG1_OFFSET 0x20
|
||||||
#define PRCI_GEMGXLPLLCFG1_CKE_SHIFT 24
|
#define PRCI_GEMGXLPLLCFG1_CKE_SHIFT 31
|
||||||
#define PRCI_GEMGXLPLLCFG1_CKE_MASK (0x1 << PRCI_GEMGXLPLLCFG1_CKE_SHIFT)
|
#define PRCI_GEMGXLPLLCFG1_CKE_MASK (0x1 << PRCI_GEMGXLPLLCFG1_CKE_SHIFT)
|
||||||
|
|
||||||
/* CORECLKSEL */
|
/* CORECLKSEL */
|
||||||
|
Loading…
Reference in New Issue
Block a user