aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2014-10-20 16:20:33 +0200
committerWolfram Sang <wsa@the-dreams.de>2014-10-20 16:20:33 +0200
commita58a3b9b045d2ab295622ea8b1989907bbc8b736 (patch)
tree4cfbc953b1b8adc5513486f1afdd978a0b1994c0
parentgpu: drm: msm: drop owner assignment from platform_drivers (diff)
downloadlinux-dev-a58a3b9b045d2ab295622ea8b1989907bbc8b736.tar.xz
linux-dev-a58a3b9b045d2ab295622ea8b1989907bbc8b736.zip
gpu: drm: omapdrm: drop owner assignment from platform_drivers
A platform_driver does not need to set an owner, it will be populated by the driver core. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
-rw-r--r--drivers/gpu/drm/omapdrm/omap_drv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_drv.c b/drivers/gpu/drm/omapdrm/omap_drv.c
index 862ba03c236c..8241ed9b353c 100644
--- a/drivers/gpu/drm/omapdrm/omap_drv.c
+++ b/drivers/gpu/drm/omapdrm/omap_drv.c
@@ -718,7 +718,6 @@ static const struct dev_pm_ops omapdrm_pm_ops = {
static struct platform_driver pdev = {
.driver = {
.name = DRIVER_NAME,
- .owner = THIS_MODULE,
#ifdef CONFIG_PM
.pm = &omapdrm_pm_ops,
#endif