2022-03-17 04:50:59

by Syed Nayyar Waris

[permalink] [raw]
Subject: Re: [RESEND PATCH 1/6] counter: 104-quad-8: Add COMPILE_TEST depends

On Wed, Mar 16, 2022 at 1:09 AM William Breathitt Gray
<[email protected]> wrote:
>
> 104_QUAD_8 depends on X86, but compiles fine on ARCH=arm. This patch
> adds support for COMPILE_TEST which is useful for compile testing code
> changes to the driver and Counter subsystem.
>
> Suggested-by: Uwe Kleine-König <[email protected]>
> Cc: Syed Nayyar Waris <[email protected]>
> Acked-by: Uwe Kleine-König <[email protected]>
> Link: https://lore.kernel.org/r/[email protected]
> Signed-off-by: William Breathitt Gray <[email protected]>
> ---
> drivers/counter/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/counter/Kconfig b/drivers/counter/Kconfig
> index 3dcdb681c4e4..5edd155f1911 100644
> --- a/drivers/counter/Kconfig
> +++ b/drivers/counter/Kconfig
> @@ -14,7 +14,7 @@ if COUNTER
>
> config 104_QUAD_8
> tristate "ACCES 104-QUAD-8 driver"
> - depends on PC104 && X86
> + depends on (PC104 && X86) || COMPILE_TEST
> select ISA_BUS_API
> help
> Say yes here to build support for the ACCES 104-QUAD-8 quadrature
> --
> 2.35.1
>

Acked-by: Syed Nayyar Waris <[email protected]>

Thanks