Browse Source

rockchip: fixes the wrong CLKSEL_CON count for CRU

The CRU_CLKSEL_COUNT value is 108, not 0x108.

Signed-off-by: Caesar Wang <wxt@rock-chips.com>
Change-Id: Ib9db066b8b3ecafcee7f645dd5633b55a808e3d7
pull/740/head
Caesar Wang 8 years ago
parent
commit
a1dccdd61b
  1. 2
      plat/rockchip/rk3399/drivers/soc/soc.h

2
plat/rockchip/rk3399/drivers/soc/soc.h

@ -64,7 +64,7 @@
#define PLL_NO_BYPASS_MODE WMSK_BIT(PLL_BYPASS_SHIFT)
#define PLL_CON_COUNT 0x06
#define CRU_CLKSEL_COUNT 0x108
#define CRU_CLKSEL_COUNT 108
#define CRU_CLKSEL_CON(n) (0x100 + (n) * 4)
#define PMUCRU_CLKSEL_CONUT 0x06

Loading…
Cancel
Save