diff options
author | Vignesh R <vigneshr@ti.com> | 2015-09-08 20:44:05 +0530 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2015-10-06 16:07:29 +0200 |
commit | 25ebc9ec162d64ab38a813dac01c5322ebbcfcfa (patch) | |
tree | c9be4f446ca952ff348b36cc7e592ffdcaa32455 /drivers/pwm | |
parent | 2b8b0ef354cc055f855d8cb86aeae9089517fba7 (diff) | |
download | linux-25ebc9ec162d64ab38a813dac01c5322ebbcfcfa.tar.bz2 |
pwm: tipwmss: Enable on TI DRA7x and AM437x
TIPWMSS is present on TI's DRA7x and AM437x SoCs. Enable its usage.
Instead of adding each SoC individually, use the more generic symbol
ARCH_OMAP2PLUS instead.
Signed-off-by: Vignesh R <vigneshr@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm')
-rw-r--r-- | drivers/pwm/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig index b2843060d373..49ef5156b418 100644 --- a/drivers/pwm/Kconfig +++ b/drivers/pwm/Kconfig @@ -368,7 +368,7 @@ config PWM_TEGRA config PWM_TIECAP tristate "ECAP PWM support" - depends on SOC_AM33XX || ARCH_DAVINCI_DA8XX + depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX help PWM driver support for the ECAP APWM controller found on AM33XX TI SOC @@ -378,7 +378,7 @@ config PWM_TIECAP config PWM_TIEHRPWM tristate "EHRPWM PWM support" - depends on SOC_AM33XX || ARCH_DAVINCI_DA8XX + depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX help PWM driver support for the EHRPWM controller found on AM33XX TI SOC @@ -388,7 +388,7 @@ config PWM_TIEHRPWM config PWM_TIPWMSS bool - default y if SOC_AM33XX && (PWM_TIECAP || PWM_TIEHRPWM) + default y if (ARCH_OMAP2PLUS) && (PWM_TIECAP || PWM_TIEHRPWM) help PWM Subsystem driver support for AM33xx SOC. |