diff options
author | Judith Mendez <jm@ti.com> | 2024-06-12 08:55:38 -0500 |
---|---|---|
committer | William Breathitt Gray <wbg@kernel.org> | 2024-07-01 19:05:42 +0900 |
commit | 988609f2aaf1c0dd1498eef6dec21c8a5fa34046 (patch) | |
tree | b19cf0e1818ed1ddc4623df0d3840d89923888b3 | |
parent | 210457b651acd61fced405cf7fef12a482932ca1 (diff) |
counter: ti-eqep: Allow eQEP driver to be built for K3 devices
TI K3 SoC's support eQEP hardware, so add ARCH_K3 to the depends
so the TI eQEP driver can be built for K3 devices.
Signed-off-by: Judith Mendez <jm@ti.com>
Reviewed-by: David Lechner <david@lechnology.com>
Link: https://lore.kernel.org/r/20240612135538.2447938-9-jm@ti.com
Signed-off-by: William Breathitt Gray <wbg@kernel.org>
-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 497bc05dca4d..d30d22dfe577 100644 --- a/drivers/counter/Kconfig +++ b/drivers/counter/Kconfig @@ -138,7 +138,7 @@ config TI_ECAP_CAPTURE config TI_EQEP tristate "TI eQEP counter driver" - depends on (SOC_AM33XX || COMPILE_TEST) + depends on SOC_AM33XX || ARCH_K3 || COMPILE_TEST select REGMAP_MMIO help Select this option to enable the Texas Instruments Enhanced Quadrature |