diff options
| author | Nishanth Menon <[email protected]> | 2021-09-21 17:40:59 +0000 |
|---|---|---|
| committer | Tomi Valkeinen <[email protected]> | 2022-02-28 09:43:27 +0000 |
| commit | ffb5c099aaa13ab7f73c29ea6ae26bce8d7575ae (patch) | |
| tree | 8c16916b5a6afbe26008ca97f1167567144379c4 /drivers/gpu/drm/bridge/cdns-dsi.c | |
| parent | drm/tiny: Add MIPI DBI compatible SPI driver (diff) | |
| download | kernel-ffb5c099aaa13ab7f73c29ea6ae26bce8d7575ae.tar.gz kernel-ffb5c099aaa13ab7f73c29ea6ae26bce8d7575ae.zip | |
drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt
Add MODULE_DEVICE_TABLE to the device tree table to create required
aliases needed for module to be loaded with device tree based platform.
Fixes: e19233955d9e ("drm/bridge: Add Cadence DSI driver")
Signed-off-by: Nishanth Menon <[email protected]>
Reviewed-by: Tomi Valkeinen <[email protected]>
Reviewed-by: Laurent Pinchart <[email protected]>
Signed-off-by: Tomi Valkeinen <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/bridge/cdns-dsi.c')
| -rw-r--r-- | drivers/gpu/drm/bridge/cdns-dsi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/bridge/cdns-dsi.c b/drivers/gpu/drm/bridge/cdns-dsi.c index d8a15c459b42..829e1a144656 100644 --- a/drivers/gpu/drm/bridge/cdns-dsi.c +++ b/drivers/gpu/drm/bridge/cdns-dsi.c @@ -1284,6 +1284,7 @@ static const struct of_device_id cdns_dsi_of_match[] = { { .compatible = "cdns,dsi" }, { }, }; +MODULE_DEVICE_TABLE(of, cdns_dsi_of_match); static struct platform_driver cdns_dsi_platform_driver = { .probe = cdns_dsi_drm_probe, |
