diff options
| author | Ohad Ben-Cohen <ohad@wizery.com> | 2012-03-04 05:01:11 -0500 |
|---|---|---|
| committer | Joerg Roedel <joerg.roedel@amd.com> | 2012-03-05 09:18:20 -0500 |
| commit | 134d12fae0bb8f3d60dc7440a9e1950bb5427167 (patch) | |
| tree | db3c73622cc813f6b70d9a6068198962ddfb3257 | |
| parent | 435792d93410f008120c4dbab148019a3cc31dbc (diff) | |
ARM: OMAP: fix iommu, not mailbox
For some weird (freudian?) reason, commit 435792d "ARM: OMAP: make
iommu subsys_initcall to fix builtin omap3isp" unintentionally changed
the mailbox's initcall instead of the iommu's.
Fix that.
Reported-by: Fernando Guzman Lugo <fernando.lugo@ti.com>
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Joerg Roedel <Joerg.Roedel@amd.com>
Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
| -rw-r--r-- | arch/arm/mach-omap2/mailbox.c | 3 | ||||
| -rw-r--r-- | arch/arm/mach-omap2/omap-iommu.c | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c index a6db1e4f7b6e..609ea2ded7e3 100644 --- a/arch/arm/mach-omap2/mailbox.c +++ b/arch/arm/mach-omap2/mailbox.c | |||
| @@ -412,8 +412,7 @@ static void __exit omap2_mbox_exit(void) | |||
| 412 | platform_driver_unregister(&omap2_mbox_driver); | 412 | platform_driver_unregister(&omap2_mbox_driver); |
| 413 | } | 413 | } |
| 414 | 414 | ||
| 415 | /* must be ready before omap3isp is probed */ | 415 | module_init(omap2_mbox_init); |
| 416 | subsys_initcall(omap2_mbox_init); | ||
| 417 | module_exit(omap2_mbox_exit); | 416 | module_exit(omap2_mbox_exit); |
| 418 | 417 | ||
| 419 | MODULE_LICENSE("GPL v2"); | 418 | MODULE_LICENSE("GPL v2"); |
diff --git a/arch/arm/mach-omap2/omap-iommu.c b/arch/arm/mach-omap2/omap-iommu.c index b8822048e409..ac49384d0285 100644 --- a/arch/arm/mach-omap2/omap-iommu.c +++ b/arch/arm/mach-omap2/omap-iommu.c | |||
| @@ -150,7 +150,8 @@ err_out: | |||
| 150 | platform_device_put(omap_iommu_pdev[i]); | 150 | platform_device_put(omap_iommu_pdev[i]); |
| 151 | return err; | 151 | return err; |
| 152 | } | 152 | } |
| 153 | module_init(omap_iommu_init); | 153 | /* must be ready before omap3isp is probed */ |
| 154 | subsys_initcall(omap_iommu_init); | ||
| 154 | 155 | ||
| 155 | static void __exit omap_iommu_exit(void) | 156 | static void __exit omap_iommu_exit(void) |
| 156 | { | 157 | { |
