All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] counter: fix dependency references for config MICROCHIP_TCB_CAPTURE
@ 2023-01-18  7:46 Lukas Bulwahn
  2023-01-18 15:02 ` William Breathitt Gray
  0 siblings, 1 reply; 2+ messages in thread
From: Lukas Bulwahn @ 2023-01-18  7:46 UTC (permalink / raw)
  To: William Breathitt Gray, Peter Robinson, linux-iio
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

Commit dfeef15e73ca ("counter: microchip-tcp-capture: Add appropriate arch
deps for TCP driver") intends to add appropriate dependencies for the
config MICROCHIP_TCB_CAPTURE. It however prefixes the intended configs with
CONFIG, but in Kconfig files in contrast to source files, the configs are
referenced to without prefixing them with CONFIG.

Fix the dependency references due to this minor misconception.

Fixes: dfeef15e73ca ("counter: microchip-tcp-capture: Add appropriate arch deps for TCP driver")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 drivers/counter/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/counter/Kconfig b/drivers/counter/Kconfig
index 90602536fb13..b5ba8fb02cf7 100644
--- a/drivers/counter/Kconfig
+++ b/drivers/counter/Kconfig
@@ -63,7 +63,7 @@ config INTERRUPT_CNT
 
 config MICROCHIP_TCB_CAPTURE
 	tristate "Microchip Timer Counter Capture driver"
-	depends on CONFIG_SOC_AT91SAM9 || CONFIG_SOC_SAM_V7 || COMPILE_TEST
+	depends on SOC_AT91SAM9 || SOC_SAM_V7 || COMPILE_TEST
 	depends on HAS_IOMEM && OF
 	select REGMAP_MMIO
 	help
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] counter: fix dependency references for config MICROCHIP_TCB_CAPTURE
  2023-01-18  7:46 [PATCH] counter: fix dependency references for config MICROCHIP_TCB_CAPTURE Lukas Bulwahn
@ 2023-01-18 15:02 ` William Breathitt Gray
  0 siblings, 0 replies; 2+ messages in thread
From: William Breathitt Gray @ 2023-01-18 15:02 UTC (permalink / raw)
  To: Lukas Bulwahn; +Cc: Peter Robinson, linux-iio, kernel-janitors, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1331 bytes --]

On Wed, Jan 18, 2023 at 08:46:59AM +0100, Lukas Bulwahn wrote:
> Commit dfeef15e73ca ("counter: microchip-tcp-capture: Add appropriate arch
> deps for TCP driver") intends to add appropriate dependencies for the
> config MICROCHIP_TCB_CAPTURE. It however prefixes the intended configs with
> CONFIG, but in Kconfig files in contrast to source files, the configs are
> referenced to without prefixing them with CONFIG.
> 
> Fix the dependency references due to this minor misconception.
> 
> Fixes: dfeef15e73ca ("counter: microchip-tcp-capture: Add appropriate arch deps for TCP driver")
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
>  drivers/counter/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/counter/Kconfig b/drivers/counter/Kconfig
> index 90602536fb13..b5ba8fb02cf7 100644
> --- a/drivers/counter/Kconfig
> +++ b/drivers/counter/Kconfig
> @@ -63,7 +63,7 @@ config INTERRUPT_CNT
>  
>  config MICROCHIP_TCB_CAPTURE
>  	tristate "Microchip Timer Counter Capture driver"
> -	depends on CONFIG_SOC_AT91SAM9 || CONFIG_SOC_SAM_V7 || COMPILE_TEST
> +	depends on SOC_AT91SAM9 || SOC_SAM_V7 || COMPILE_TEST
>  	depends on HAS_IOMEM && OF
>  	select REGMAP_MMIO
>  	help
> -- 
> 2.17.1

Applied to counter-next.

William Breathitt Gray

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-01-18 15:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-18  7:46 [PATCH] counter: fix dependency references for config MICROCHIP_TCB_CAPTURE Lukas Bulwahn
2023-01-18 15:02 ` William Breathitt Gray

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.