Commit fc608c74 authored by Alexander Shiyan's avatar Alexander Shiyan Committed by Shawn Guo

drivers: bus: imx-weim: Add missing platform_driver.owner field

Signed-off-by: default avatarAlexander Shiyan <shc_work@mail.ru>
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
parent 29e54970
...@@ -108,8 +108,9 @@ static int __init weim_probe(struct platform_device *pdev) ...@@ -108,8 +108,9 @@ static int __init weim_probe(struct platform_device *pdev)
static struct platform_driver weim_driver = { static struct platform_driver weim_driver = {
.driver = { .driver = {
.name = "imx-weim", .name = "imx-weim",
.of_match_table = weim_id_table, .owner = THIS_MODULE,
.of_match_table = weim_id_table,
}, },
}; };
module_platform_driver_probe(weim_driver, weim_probe); module_platform_driver_probe(weim_driver, weim_probe);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment