diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2021-03-21 14:43:41 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-03-22 17:29:22 +0300 |
commit | 693091d99e7b7f5aa994745e719c69a731173db8 (patch) | |
tree | fda17d39e5aa5c841bcdd41e793e0300798ee776 /drivers/video/backlight | |
parent | cdfd4c689e2a52c313b35ddfc1852ff274f91acb (diff) | |
download | linux-693091d99e7b7f5aa994745e719c69a731173db8.tar.xz |
backlight: ktd253: Support KTD259
The KTD259 works just like KTD253 so add this compatible
to the driver.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/video/backlight')
-rw-r--r-- | drivers/video/backlight/ktd253-backlight.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/backlight/ktd253-backlight.c b/drivers/video/backlight/ktd253-backlight.c index d7b287cffd5c..a7df5bcca9da 100644 --- a/drivers/video/backlight/ktd253-backlight.c +++ b/drivers/video/backlight/ktd253-backlight.c @@ -173,6 +173,7 @@ static int ktd253_backlight_probe(struct platform_device *pdev) static const struct of_device_id ktd253_backlight_of_match[] = { { .compatible = "kinetic,ktd253" }, + { .compatible = "kinetic,ktd259" }, { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, ktd253_backlight_of_match); |