Hi Linus, The following changes since commit 6b21d18ed50c7d145220b0724ea7f2613abf0f95: Linux 3.3-rc5 (2012-02-25 12:18:16 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git iommu/fixes or as a signed tag at: git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git iommu-fixes-v3.3-rc5 Ohad Ben-Cohen (3): iommu/omap: fix erroneous omap-iommu-debug API calls iommu/omap: fix NULL pointer dereference ARM: OMAP: make iommu subsys_initcall to fix builtin omap3isp arch/arm/mach-omap2/mailbox.c | 3 +- drivers/iommu/omap-iommu-debug.c | 59 +++++++++++++++++++++++++++++--------- drivers/iommu/omap-iommu.c | 3 +- 3 files changed, 49 insertions(+), 16 deletions(-) All the fixes are for the OMAP IOMMU driver. The first patch is the biggest one. It fixes the calls of the function omap_find_iovm_area() in the omap-iommu-debug module which expects a 'struct device' parameter since commit fabdbca instead of an omap_iommu handle. The omap-iommu-debug code still passed the handle to the function which caused a crash. The second patch fixes a NULL pointer dereference in the OMAP code and the third patch makes sure that the omap-iommu is initialized before the omap-isp driver, which relies on the iommu. The last patch is only a workaround until defered probing is implemented. The top-commit id on my local machine is 435792d93410f008120c4dbab148019a3cc31dbc Please pull. Thanks, Joerg