summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/tegra
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2015-08-07 07:26:57 (GMT)
committerThierry Reding <treding@nvidia.com>2015-08-13 11:47:43 (GMT)
commit76ac3284bb708545e762091ba5d6d0f0dbc008bc (patch)
tree6010d18b664dbf1afc8e14a05ee6053ab1e4f074 /drivers/gpu/drm/tegra
parent8fd3ffa902a0d9f282ffa80599970ff1c823b1a8 (diff)
downloadlinux-76ac3284bb708545e762091ba5d6d0f0dbc008bc.tar.xz
drm/tegra: dc: Don't explicitly set owner module
The call to platform_driver_register() will already set up the .owner field, so there's no need to do it explicitly. Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra')
-rw-r--r--drivers/gpu/drm/tegra/dc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/dc.c b/drivers/gpu/drm/tegra/dc.c
index 60be70f..d60aa87 100644
--- a/drivers/gpu/drm/tegra/dc.c
+++ b/drivers/gpu/drm/tegra/dc.c
@@ -2091,7 +2091,6 @@ static int tegra_dc_remove(struct platform_device *pdev)
struct platform_driver tegra_dc_driver = {
.driver = {
.name = "tegra-dc",
- .owner = THIS_MODULE,
.of_match_table = tegra_dc_of_match,
},
.probe = tegra_dc_probe,