summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis de Bethencourt2015-11-30 16:02:44 +0100
committerPhilipp Zabel2015-11-30 22:24:38 +0100
commit5e4789d357a575f9777dec317cc0efc7b7458714 (patch)
tree29bfa5ebde3d459b23553c38aa2c960277c38b8a
parentdrm: imx: convert to drm_crtc_send_vblank_event() (diff)
downloadkernel-qcow2-linux-5e4789d357a575f9777dec317cc0efc7b7458714.tar.gz
kernel-qcow2-linux-5e4789d357a575f9777dec317cc0efc7b7458714.tar.xz
kernel-qcow2-linux-5e4789d357a575f9777dec317cc0efc7b7458714.zip
drm: imx: imx-tve: Fix module autoload for OF platform driver
This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
-rw-r--r--drivers/gpu/drm/imx/imx-tve.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/imx/imx-tve.c b/drivers/gpu/drm/imx/imx-tve.c
index e671ad369416..f9597146dc67 100644
--- a/drivers/gpu/drm/imx/imx-tve.c
+++ b/drivers/gpu/drm/imx/imx-tve.c
@@ -721,6 +721,7 @@ static const struct of_device_id imx_tve_dt_ids[] = {
{ .compatible = "fsl,imx53-tve", },
{ /* sentinel */ }
};
+MODULE_DEVICE_TABLE(of, imx_tve_dt_ids);
static struct platform_driver imx_tve_driver = {
.probe = imx_tve_probe,