diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2015-11-30 15:02:44 +0000 |
---|---|---|
committer | Philipp Zabel <p.zabel@pengutronix.de> | 2015-11-30 22:24:38 +0100 |
commit | 5e4789d357a575f9777dec317cc0efc7b7458714 (patch) | |
tree | 29bfa5ebde3d459b23553c38aa2c960277c38b8a /drivers/gpu/drm/imx | |
parent | 69d21fc0a21196e9c5b259505c0135a88002f9d2 (diff) | |
download | linux-5e4789d357a575f9777dec317cc0efc7b7458714.tar.bz2 |
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>
Diffstat (limited to 'drivers/gpu/drm/imx')
-rw-r--r-- | drivers/gpu/drm/imx/imx-tve.c | 1 |
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, |