diff options
author | Stephen Warren <swarren@nvidia.com> | 2014-06-18 16:21:55 -0600 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2014-08-04 10:07:39 +0200 |
commit | ef70728c7a6571a1a7115031e932b811f1740b2e (patch) | |
tree | 23143137cf59f0f3df94d9a2d3a5f9ffe656ff3e /drivers/gpu/drm/tegra/dc.c | |
parent | 5482d75a6597de97f79255a257c486a6960c6c65 (diff) |
drm/tegra: add MODULE_DEVICE_TABLEs
When tegra-drm.ko is built as a module, these MODULE_DEVICE_TABLEs allow
the module to be auto-loaded since the module will match the devices
instantiated from device tree.
(Notes for stable: in 3.14+, just git rm any conflicting file, since they
are added in later kernels. For 3.13 and below, manual merging will be
needed)
Cc: <stable@vger.kernel.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/dc.c')
-rw-r--r-- | drivers/gpu/drm/tegra/dc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tegra/dc.c b/drivers/gpu/drm/tegra/dc.c index b2065d9e13d4..6553fd238685 100644 --- a/drivers/gpu/drm/tegra/dc.c +++ b/drivers/gpu/drm/tegra/dc.c @@ -1394,6 +1394,7 @@ static const struct of_device_id tegra_dc_of_match[] = { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, tegra_dc_of_match); static int tegra_dc_parse_dt(struct tegra_dc *dc) { |