2020-05-22 04:14:45

by Tiezhu Yang

[permalink] [raw]
Subject: [PATCH 3/3] gpio: pxa: Add COMPILE_TEST support

Add COMPILE_TEST support to the PXA GPIO driver for better compile
testing coverage.

Signed-off-by: Tiezhu Yang <[email protected]>
---
drivers/gpio/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index 03c01f4..5e90aad 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -439,7 +439,7 @@ config GPIO_PMIC_EIC_SPRD

config GPIO_PXA
bool "PXA GPIO support"
- depends on ARCH_PXA || ARCH_MMP
+ depends on ARCH_PXA || ARCH_MMP || COMPILE_TEST
help
Say yes here to support the PXA GPIO device

--
2.1.0


2020-05-25 16:54:03

by Bartosz Golaszewski

[permalink] [raw]
Subject: Re: [PATCH 3/3] gpio: pxa: Add COMPILE_TEST support

pt., 22 maj 2020 o 06:12 Tiezhu Yang <[email protected]> napisaƂ(a):
>
> Add COMPILE_TEST support to the PXA GPIO driver for better compile
> testing coverage.
>
> Signed-off-by: Tiezhu Yang <[email protected]>
> ---
> drivers/gpio/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index 03c01f4..5e90aad 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -439,7 +439,7 @@ config GPIO_PMIC_EIC_SPRD
>
> config GPIO_PXA
> bool "PXA GPIO support"
> - depends on ARCH_PXA || ARCH_MMP
> + depends on ARCH_PXA || ARCH_MMP || COMPILE_TEST
> help
> Say yes here to support the PXA GPIO device
>
> --
> 2.1.0
>

Patch applied.

Bart