aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorEnric Balletbo i Serra <eballetbo@gmail.com>2015-11-29 17:29:46 +0100
committerLee Jones <lee.jones@linaro.org>2016-01-11 06:36:35 +0000
commitfcf13f0b9e4b54c51dff8366fc9a96d85129ff4c (patch)
tree5f8e975c85176adfd0e84f6a200c8598737f3568 /drivers/video
parentbacklight: pwm_bl: Avoid backlight flicker when probed from DT (diff)
downloadlinux-dev-fcf13f0b9e4b54c51dff8366fc9a96d85129ff4c.tar.xz
linux-dev-fcf13f0b9e4b54c51dff8366fc9a96d85129ff4c.zip
backlight: tps65217_bl: Add MODULE_DEVICE_TABLE
The device table is required to load modules based on modaliases. Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/backlight/tps65217_bl.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/video/backlight/tps65217_bl.c b/drivers/video/backlight/tps65217_bl.c
index 61d72bffd402..fd524ad860a5 100644
--- a/drivers/video/backlight/tps65217_bl.c
+++ b/drivers/video/backlight/tps65217_bl.c
@@ -320,10 +320,19 @@ static int tps65217_bl_probe(struct platform_device *pdev)
return 0;
}
+#ifdef CONFIG_OF
+static const struct of_device_id tps65217_bl_of_match[] = {
+ { .compatible = "ti,tps65217-bl", },
+ { /* sentinel */ },
+};
+MODULE_DEVICE_TABLE(of, tps65217_bl_of_match);
+#endif
+
static struct platform_driver tps65217_bl_driver = {
.probe = tps65217_bl_probe,
.driver = {
.name = "tps65217-bl",
+ .of_match_table = of_match_ptr(tps65217_bl_of_match),
},
};