mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 05:34:30 +08:00
rockchip: rk3288: fix EMMC_DIV_MASK definition in header
It should be '<<' instead of '<' for _MASK definition, fix it. Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com> Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e8f9ad94bf
commit
bf82e200a9
@ -85,7 +85,7 @@ enum {
|
||||
EMMC_PLL_SELECT_24MHZ,
|
||||
|
||||
EMMC_DIV_SHIFT = 8,
|
||||
EMMC_DIV_MASK = 0x3f < EMMC_DIV_SHIFT,
|
||||
EMMC_DIV_MASK = 0x3f << EMMC_DIV_SHIFT,
|
||||
|
||||
SDIO0_PLL_SHIFT = 6,
|
||||
SDIO0_PLL_MASK = 3 << SDIO0_PLL_SHIFT,
|
||||
|
Loading…
Reference in New Issue
Block a user