diff options
author | Nicolas Ferre <nicolas.ferre@atmel.com> | 2015-09-09 15:32:30 +0200 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2015-10-06 16:07:28 +0200 |
commit | 2b8b0ef354cc055f855d8cb86aeae9089517fba7 (patch) | |
tree | ecf3e5231265a9ebdcb6d232b7eb431801d8bc3c /drivers/pwm | |
parent | 3a9f5957020f87503afd5d4c1d5705253f0b3569 (diff) | |
download | linux-stable-2b8b0ef354cc055f855d8cb86aeae9089517fba7.tar.gz linux-stable-2b8b0ef354cc055f855d8cb86aeae9089517fba7.tar.bz2 linux-stable-2b8b0ef354cc055f855d8cb86aeae9089517fba7.zip |
pwm: atmel-hlcdc: add sama5d2 SoC support.
Add sama5d2 hlcdc backlight PWM support. This chip doesn't have to deal with an
errata, so it's a simple addition of the mfd compatible string.
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm')
-rw-r--r-- | drivers/pwm/pwm-atmel-hlcdc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/pwm/pwm-atmel-hlcdc.c b/drivers/pwm/pwm-atmel-hlcdc.c index be7bb05325b8..f994c7eaf41c 100644 --- a/drivers/pwm/pwm-atmel-hlcdc.c +++ b/drivers/pwm/pwm-atmel-hlcdc.c @@ -227,6 +227,9 @@ static const struct of_device_id atmel_hlcdc_dt_ids[] = { .data = &atmel_hlcdc_pwm_at91sam9x5_errata, }, { + .compatible = "atmel,sama5d2-hlcdc", + }, + { .compatible = "atmel,sama5d3-hlcdc", .data = &atmel_hlcdc_pwm_sama5d3_errata, }, |