Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 288036
b: refs/heads/master
c: 435792d
h: refs/heads/master
v: v3
  • Loading branch information
Ohad Ben-Cohen authored and Joerg Roedel committed Feb 27, 2012
1 parent c59937b commit 81e5b4b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 87997aaa1bad1fc37e4ff7eb27850172017017a0
refs/heads/master: 435792d93410f008120c4dbab148019a3cc31dbc
3 changes: 2 additions & 1 deletion trunk/arch/arm/mach-omap2/mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,8 @@ static void __exit omap2_mbox_exit(void)
platform_driver_unregister(&omap2_mbox_driver);
}

module_init(omap2_mbox_init);
/* must be ready before omap3isp is probed */
subsys_initcall(omap2_mbox_init);
module_exit(omap2_mbox_exit);

MODULE_LICENSE("GPL v2");
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/iommu/omap-iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,8 @@ static int __init omap_iommu_init(void)

return platform_driver_register(&omap_iommu_driver);
}
module_init(omap_iommu_init);
/* must be ready before omap3isp is probed */
subsys_initcall(omap_iommu_init);

static void __exit omap_iommu_exit(void)
{
Expand Down

0 comments on commit 81e5b4b

Please sign in to comment.