2019-11-27 01:56:29

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH] arc: eznps: fix allmodconfig kconfig warning

From: Randy Dunlap <[email protected]>

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 <[email protected]>
Cc: Vineet Gupta <[email protected]>
Cc: Ofer Levi <[email protected]>
Cc: [email protected]
---
arch/arc/plat-eznps/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- lnx-54.orig/arch/arc/plat-eznps/Kconfig
+++ lnx-54/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


2019-12-04 23:07:43

by Vineet Gupta

[permalink] [raw]
Subject: Re: [PATCH] arc: eznps: fix allmodconfig kconfig warning

On 11/26/19 5:54 PM, Randy Dunlap wrote:
> From: Randy Dunlap <[email protected]>
>
> 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 <[email protected]>

Thx for the fix. Will hit for-curr after rc1.

Thx,
-Vineet