diff options
author | Lukas Bulwahn <[email protected]> | 2023-01-18 08:46:59 +0100 |
---|---|---|
committer | William Breathitt Gray <[email protected]> | 2023-01-18 09:59:58 -0500 |
commit | 01f714ee022ecb2667ca8ba909138b1af4cfff2c (patch) | |
tree | 52588dfb9ec7b301c4a097b7eafe3926831810b1 | |
parent | dfeef15e73ca22455c1dd51c0ebc477145081630 (diff) |
counter: fix dependency references for config MICROCHIP_TCB_CAPTURE
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 <[email protected]>
Link: https://lore.kernel.org/r/[email protected]/
Signed-off-by: William Breathitt Gray <[email protected]>
-rw-r--r-- | drivers/counter/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
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 |