[PATCH] riscv: fix RISCV_ISA_SVPBMT kconfig dependency warning
Palmer Dabbelt
palmer at dabbelt.com
Thu Sep 15 11:48:10 PDT 2022
On Tue, 13 Sep 2022 05:00:08 PDT (-0700), heiko at sntech.de wrote:
> Hi Palmer,
>
> Am Samstag, 9. Juli 2022, 03:49:29 CEST schrieb Randy Dunlap:
>> RISCV_ISA_SVPBMT selects RISCV_ALTERNATIVE which depends on !XIP_KERNEL.
>> Therefore RISCV_ISA_SVPBMT should also depend on !XIP_KERNEL so
>> quieten this kconfig warning:
>>
>> WARNING: unmet direct dependencies detected for RISCV_ALTERNATIVE
>> Depends on [n]: !XIP_KERNEL [=y]
>> Selected by [y]:
>> - RISCV_ISA_SVPBMT [=y] && 64BIT [=y] && MMU [=y]
>>
>> Fixes: ff689fd21cb1 ("riscv: add RISC-V Svpbmt extension support")
>> Signed-off-by: Randy Dunlap <rdunlap at infradead.org>
>
> I think this should also be applied as fix?
Thanks, the original seems to have gotten lost somewhere but I've picked
this up from lore.
>
> Thanks
> Heiko
>
>
>> Cc: Wei Fu <wefu at redhat.com>
>> Cc: Liu Shaohua <liush at allwinnertech.com>
>> Cc: Guo Ren <guoren at kernel.org>
>> Cc: Heiko Stuebner <heiko at sntech.de>
>> Cc: Paul Walmsley <paul.walmsley at sifive.com>
>> Cc: Palmer Dabbelt <palmer at dabbelt.com>
>> Cc: Albert Ou <aou at eecs.berkeley.edu>
>> Cc: linux-riscv at lists.infradead.org
>> ---
>> arch/riscv/Kconfig | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> --- a/arch/riscv/Kconfig
>> +++ b/arch/riscv/Kconfig
>> @@ -362,6 +362,7 @@ config RISCV_ISA_C
>> config RISCV_ISA_SVPBMT
>> bool "SVPBMT extension support"
>> depends on 64BIT && MMU
>> + depends on !XIP_KERNEL
>> select RISCV_ALTERNATIVE
>> default y
>> help
>>
More information about the linux-riscv
mailing list