drm/tegra: vic: Export module device table
authorThierry Reding <treding@nvidia.com>
Tue, 3 Dec 2019 16:19:11 +0000 (17:19 +0100)
committerThierry Reding <treding@nvidia.com>
Wed, 4 Dec 2019 12:37:27 +0000 (13:37 +0100)
Export the module device table to ensure the VIC compatible strings are
listed in the module's aliases table. This in turn causes the driver to
be automatically loaded on boot if VIC is the only enabled subdevice of
the logical host1x DRM device.

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/tegra/vic.c

index 9444ba1839907594d06f9c6406751486fd1d6871..c4d82b8b306502b0cc807356effb1de849a36878 100644 (file)
@@ -386,13 +386,14 @@ static const struct vic_config vic_t194_config = {
        .supports_sid = true,
 };
 
-static const struct of_device_id vic_match[] = {
+static const struct of_device_id tegra_vic_of_match[] = {
        { .compatible = "nvidia,tegra124-vic", .data = &vic_t124_config },
        { .compatible = "nvidia,tegra210-vic", .data = &vic_t210_config },
        { .compatible = "nvidia,tegra186-vic", .data = &vic_t186_config },
        { .compatible = "nvidia,tegra194-vic", .data = &vic_t194_config },
        { },
 };
+MODULE_DEVICE_TABLE(of, tegra_vic_of_match);
 
 static int vic_probe(struct platform_device *pdev)
 {
@@ -516,7 +517,7 @@ static const struct dev_pm_ops vic_pm_ops = {
 struct platform_driver tegra_vic_driver = {
        .driver = {
                .name = "tegra-vic",
-               .of_match_table = vic_match,
+               .of_match_table = tegra_vic_of_match,
                .pm = &vic_pm_ops
        },
        .probe = vic_probe,