提交 4234541f 编写于 作者: J Joerg Roedel

omap: iommu: Fix up mutex->spin_lock conversion of iommu_lock

The omap_iommu_set_isr() was still using the mutex functions
but the iommu_lock was converted to a spin_lock. Fix that
up.
Signed-off-by: NJoerg Roedel <joerg.roedel@amd.com>
上级 6c32df43
...@@ -918,14 +918,14 @@ int omap_iommu_set_isr(const char *name, ...@@ -918,14 +918,14 @@ int omap_iommu_set_isr(const char *name,
return -ENODEV; return -ENODEV;
obj = to_iommu(dev); obj = to_iommu(dev);
mutex_lock(&obj->iommu_lock); spin_lock(&obj->iommu_lock);
if (obj->refcount != 0) { if (obj->refcount != 0) {
mutex_unlock(&obj->iommu_lock); spin_unlock(&obj->iommu_lock);
return -EBUSY; return -EBUSY;
} }
obj->isr = isr; obj->isr = isr;
obj->isr_priv = isr_priv; obj->isr_priv = isr_priv;
mutex_unlock(&obj->iommu_lock); spin_unlock(&obj->iommu_lock);
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册