From: Wolfram Sang Date: Mon, 20 Oct 2014 14:20:48 +0000 (+0200) Subject: media: platform: s5p-mfc: drop owner assignment from platform_drivers X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=f38a46ca1432b5e219ba628f797b6998d59f1fa6;p=deliverable%2Flinux.git media: platform: s5p-mfc: 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 --- diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc.c b/drivers/media/platform/s5p-mfc/s5p_mfc.c index 165bc86c5962..96fe33f0a045 100644 --- a/drivers/media/platform/s5p-mfc/s5p_mfc.c +++ b/drivers/media/platform/s5p-mfc/s5p_mfc.c @@ -1505,7 +1505,6 @@ static struct platform_driver s5p_mfc_driver = { .id_table = mfc_driver_ids, .driver = { .name = S5P_MFC_NAME, - .owner = THIS_MODULE, .pm = &s5p_mfc_pm_ops, .of_match_table = exynos_mfc_match, },