]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
iommu/tegra-gart: fix spin_unlock in map failure path
authorLucas Stach <dev@lynxeye.de>
Mon, 12 Mar 2012 19:15:01 +0000 (20:15 +0100)
committerJoerg Roedel <joerg.roedel@amd.com>
Tue, 13 Mar 2012 10:17:42 +0000 (11:17 +0100)
This must have been messed up while merging, the intention was
clearly to unlock there.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
drivers/iommu/tegra-gart.c

index b21598fc262828336d980894c4eb427d8684092c..779306ee7b160f1608e13179a27f244b3726771f 100644 (file)
@@ -246,7 +246,7 @@ static int gart_iommu_map(struct iommu_domain *domain, unsigned long iova,
        pfn = __phys_to_pfn(pa);
        if (!pfn_valid(pfn)) {
                dev_err(gart->dev, "Invalid page: %08x\n", pa);
-               spin_lock_irqsave(&gart->pte_lock, flags);
+               spin_unlock_irqrestore(&gart->pte_lock, flags);
                return -EINVAL;
        }
        gart_set_pte(gart, iova, GART_PTE(pfn));