Message ID | Y9OveVKTkX8cRhyP@gondor.apana.org.au (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | hwrng: starfive - Enable compile testing | expand |
Context | Check | Description |
---|---|---|
conchuod/tree_selection | fail | Failed to apply to next/pending-fixes or riscv/for-next |
On Fri, Jan 27, 2023 at 07:03:21PM +0800, Herbert Xu wrote: > Enable compile testing for jh7110. Also remove the dependency on > HW_RANDOM. Checked, the latter is because the whole menu is wrapped in a if HW_RANDOM, so seems fair to me! Reviewed-by: Conor Dooley <conor.dooley@microchip.com> Thanks, Conor.
> Enable compile testing for jh7110. Also remove the dependency on > HW_RANDOM. > > Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> > Reviewed-by: Jia Jie Ho <jiajie.ho@starfivetech.com> Thanks, Jia Jie
diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig index 9924e2f35b69..ae508e96cfc2 100644 --- a/drivers/char/hw_random/Kconfig +++ b/drivers/char/hw_random/Kconfig @@ -551,8 +551,7 @@ config HW_RANDOM_CN10K config HW_RANDOM_JH7110 tristate "StarFive JH7110 Random Number Generator support" - depends on SOC_STARFIVE - depends on HW_RANDOM + depends on SOC_STARFIVE || COMPILE_TEST help This driver provides support for the True Random Number Generator in StarFive JH7110 SoCs.
Enable compile testing for jh7110. Also remove the dependency on HW_RANDOM. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>