Skip to content

Commit

Permalink
drivers: bus: imx-weim: Add missing platform_driver.owner field
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
  • Loading branch information
Alexander Shiyan authored and Shawn Guo committed Aug 16, 2013
1 parent 29e5497 commit fc608c7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/bus/imx-weim.c
Original file line number Diff line number Diff line change
@@ -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);

0 comments on commit fc608c7

Please sign in to comment.