diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2019-11-26 17:54:09 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-02-05 14:18:05 +0000 |
commit | 0f6f0693493719ff84c7ff5ae161605d86aed619 (patch) | |
tree | 9bbf7e5ce536558b21d8e5edd7809e25f2d48aa0 /arch/arc | |
parent | 108b4537f1a450a4b979857f3ad5113e485917ba (diff) | |
download | linux-stable-0f6f0693493719ff84c7ff5ae161605d86aed619.tar.gz linux-stable-0f6f0693493719ff84c7ff5ae161605d86aed619.tar.bz2 linux-stable-0f6f0693493719ff84c7ff5ae161605d86aed619.zip |
arc: eznps: fix allmodconfig kconfig warning
[ Upstream commit 1928b36cfa4df1aeedf5f2644d0c33f3a1fcfd7b ]
Fix kconfig warning for arch/arc/plat-eznps/Kconfig allmodconfig:
WARNING: unmet direct dependencies detected for CLKSRC_NPS
Depends on [n]: GENERIC_CLOCKEVENTS [=y] && !PHYS_ADDR_T_64BIT [=y]
Selected by [y]:
- ARC_PLAT_EZNPS [=y]
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Vineet Gupta <vgupta@synopsys.com>
Cc: Ofer Levi <oferle@mellanox.com>
Cc: linux-snps-arc@lists.infradead.org
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch/arc')
-rw-r--r-- | arch/arc/plat-eznps/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/plat-eznps/Kconfig b/arch/arc/plat-eznps/Kconfig index 8eff057efcae..ce908e2c5282 100644 --- a/arch/arc/plat-eznps/Kconfig +++ b/arch/arc/plat-eznps/Kconfig @@ -7,7 +7,7 @@ menuconfig ARC_PLAT_EZNPS bool "\"EZchip\" ARC dev platform" select CPU_BIG_ENDIAN - select CLKSRC_NPS + select CLKSRC_NPS if !PHYS_ADDR_T_64BIT select EZNPS_GIC select EZCHIP_NPS_MANAGEMENT_ENET if ETHERNET help |