1
0
Fork 0

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

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
hifive-unleashed-5.1
Alexander Shiyan 2013-06-29 08:27:53 +04:00 committed by Shawn Guo
parent 29e54970c2
commit fc608c745c
1 changed files with 3 additions and 2 deletions

View 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);