aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/phy/phy-exynos-mipi-video.c
diff options
context:
space:
mode:
authorPeter Griffin <peter.griffin@linaro.org>2014-08-15 08:40:14 -0400
committerKishon Vijay Abraham I <kishon@ti.com>2014-09-24 05:48:34 -0400
commit4f0eb5d7efe375859b15c97f453113a242bf057b (patch)
tree67e3942ebdba9f9604976c160425845acd5c674e /drivers/phy/phy-exynos-mipi-video.c
parenta5ec598650257d9a7abefa6616840c872e194fdb (diff)
phy: remove .owner field for drivers using module_platform_driver
This patch removes the superflous .owner field for drivers which use the module_platform_driver or platform_driver_register api, as this is overriden in __platform_driver_register. Signed-off-by: Peter Griffin <peter.griffin@linaro.org> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy/phy-exynos-mipi-video.c')
-rw-r--r--drivers/phy/phy-exynos-mipi-video.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/phy/phy-exynos-mipi-video.c b/drivers/phy/phy-exynos-mipi-video.c
index b55a92e12496..6a9bef138617 100644
--- a/drivers/phy/phy-exynos-mipi-video.c
+++ b/drivers/phy/phy-exynos-mipi-video.c
@@ -165,7 +165,6 @@ static struct platform_driver exynos_mipi_video_phy_driver = {
165 .driver = { 165 .driver = {
166 .of_match_table = exynos_mipi_video_phy_of_match, 166 .of_match_table = exynos_mipi_video_phy_of_match,
167 .name = "exynos-mipi-video-phy", 167 .name = "exynos-mipi-video-phy",
168 .owner = THIS_MODULE,
169 } 168 }
170}; 169};
171module_platform_driver(exynos_mipi_video_phy_driver); 170module_platform_driver(exynos_mipi_video_phy_driver);