mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-23 22:30:51 +07:00
memory: tegra: Fix compilation warnings on 64bit platforms
[ Upstream commit e0740fb869730110b36a4afcf05ad1b9d6f5fb6d ] Fix compilation warning on 64bit platforms caused by implicit promotion of 32bit signed integer to a 64bit unsigned value which happens after enabling compile-testing of the EMC drivers. Reported-by: kernel test robot <lkp@intel.com> Reviewed-by: Nathan Chancellor <nathan@kernel.org> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
7ad965c8a7
commit
41e2bcca23
@ -265,8 +265,8 @@
|
||||
#define EMC_PUTERM_ADJ 0x574
|
||||
|
||||
#define DRAM_DEV_SEL_ALL 0
|
||||
#define DRAM_DEV_SEL_0 (2 << 30)
|
||||
#define DRAM_DEV_SEL_1 (1 << 30)
|
||||
#define DRAM_DEV_SEL_0 BIT(31)
|
||||
#define DRAM_DEV_SEL_1 BIT(30)
|
||||
|
||||
#define EMC_CFG_POWER_FEATURES_MASK \
|
||||
(EMC_CFG_DYN_SREF | EMC_CFG_DRAM_ACPD | EMC_CFG_DRAM_CLKSTOP_SR | \
|
||||
|
@ -145,8 +145,8 @@
|
||||
#define EMC_SELF_REF_CMD_ENABLED BIT(0)
|
||||
|
||||
#define DRAM_DEV_SEL_ALL (0 << 30)
|
||||
#define DRAM_DEV_SEL_0 (2 << 30)
|
||||
#define DRAM_DEV_SEL_1 (1 << 30)
|
||||
#define DRAM_DEV_SEL_0 BIT(31)
|
||||
#define DRAM_DEV_SEL_1 BIT(30)
|
||||
#define DRAM_BROADCAST(num) \
|
||||
((num) > 1 ? DRAM_DEV_SEL_ALL : DRAM_DEV_SEL_0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user