drivers: bus: imx-weim: Add missing platform_driver.owner field
authorAlexander Shiyan <shc_work@mail.ru>
Sat, 29 Jun 2013 04:27:53 +0000 (08:27 +0400)
committerShawn Guo <shawn.guo@linaro.org>
Fri, 16 Aug 2013 04:59:44 +0000 (12:59 +0800)
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
drivers/bus/imx-weim.c

index f8729247e48e9f59d96f1020cddda48f82ec5db3..dc860a4113435e3fb6388948ddec8cb037588298 100644 (file)
@@ -108,8 +108,9 @@ static int __init weim_probe(struct platform_device *pdev)
 
 static struct platform_driver weim_driver = {
        .driver = {
-               .name = "imx-weim",
-               .of_match_table = weim_id_table,
+               .name           = "imx-weim",
+               .owner          = THIS_MODULE,
+               .of_match_table = weim_id_table,
        },
 };
 module_platform_driver_probe(weim_driver, weim_probe);